Location: The cardiac Na+ /K+ ATPase: An updated, thermodynamically consistent model @ 048846209253 / Code / MATLAB / code / dataset_functions / load_Hansen_Nai.m

Author:
AnandR <a.rampadarath@auckland.ac.nz>
Date:
2019-02-14 18:10:07+13:00
Desc:
Validated models and annotated using semgen
Permanent Source URI:
https://models.cellml.org/workspace/579/rawfile/04884620925328bb8adc1473d94d03f64b63f528/Code/MATLAB/code/dataset_functions/load_Hansen_Nai.m

function struct_output = load_Hansen_Nai(file_path)

file_id = fopen(file_path);
data = textscan(file_id,'%s','delimiter','\n');
fclose(file_id);

Nai_vec = [5; 10; 30; 50; 80];
num_Nai_conc = length(Nai_vec);

data = data{1};

struct_output = struct('Nai',Nai_vec,...
    'cyc_rate',zeros(num_Nai_conc,1));

for i_line = 1:num_Nai_conc
    line = data{1+i_line};
    line_split = regexp(line,',','split');
    struct_output.cyc_rate(i_line) = str2double(line_split(2));
end

end