Location: BG_Kr @ d0ecd7a7b4fe / matlab_parameter_finding / load_stoichiometry.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-28 16:32:01+13:00
Desc:
With channel density checked using patch clamp against kinetic model, and G_GHK fitted better
Permanent Source URI:
http://models.cellml.org/workspace/82c/rawfile/d0ecd7a7b4fe4b853db2483ffff2089a214e65c8/matlab_parameter_finding/load_stoichiometry.m

function [Nf,Nr] = load_stoichiometry(data_dir,sys_name)
forward_mat_path = [data_dir sys_name '_forward_matrix.txt'];
reverse_mat_path = [data_dir sys_name '_reverse_matrix.txt'];
Nf = load_matrix(forward_mat_path);
Nr = load_matrix(reverse_mat_path);
end