Location: BG_TCC @ 82bf33179511 / matlab_parameter_fitting / load_stoichiometry.m
- Author:
- Shelley Fong <s.fong@auckland.ac.nz>
- Date:
- 2022-03-14 16:27:21+13:00
- Desc:
- Changing Cm to be equal to Pan value, which is physiological. Not Clancy01 value
- Permanent Source URI:
- https://models.fieldml.org/workspace/831/rawfile/82bf33179511b37b21c6d9f3442efd1be8793992/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