Location: BG_funny @ 724670f52ae3 / matlab_parameter_fitting / load_stoichiometry.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-30 09:05:01+13:00
Desc:
With channel density checked using patch clamp against kinetic model. K and Na have diff channel densities
Permanent Source URI:
https://models.cellml.org/workspace/838/rawfile/724670f52ae35574ca5a9d3dbfac57ab5173e105/matlab_parameter_fitting/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