Location: BG_NCX @ 8329c81d5a38 / matlab_Pan_parameter_fitting / NCX_total_error.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-04-14 15:37:18+12:00
Desc:
Scaling number of gating variables by new SA
Permanent Source URI:
https://models.physiomeproject.org/workspace/828/rawfile/8329c81d5a3859fd4716f3429d791a061b916a3d/matlab_Pan_parameter_fitting/NCX_total_error.m

function total_error = NCX_total_error(params_vec,struct_NCX_data)
total_error = error_Kimura_Nae(params_vec,struct_NCX_data.Kimura_Nae) ...
    + error_Kimura_Cae(params_vec,struct_NCX_data.Kimura_Cae) ...
    + error_BW(params_vec,struct_NCX_data.BW);

% struct_input = struct('Nai',0,...
%     'Cae',1,...
%     'Cai',430e-6,...
%     'V',-0.11,...
%     'Nae',140);
% 
% total_error = total_error + (NCX_vss_fitting(params_vec,struct_input,1)-1000)^2;
end