Location: BG_funny @ 555927df62a1 / matlab_parameter_fitting / load_stoichiometry.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-08 11:33:45+13:00
Desc:
Fixing znames
Permanent Source URI:
https://models.cellml.org/workspace/838/rawfile/555927df62a13fe0ca207a420fcc3f542985d949/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