set_kinetics.m

来自「%The Metabolic Networks Toolbox contains」· M 代码 · 共 20 行

M
20
字号
function kinetics = set_kinetics(network,type)% kinetics = set_kinetics(network,type)%% construct a kinetics field for a metabolic network%% type from {'mass-action','saturated','formula_strings'}%% this function calls one of the following m-files%  set_mass_action_kinetics%  set_formula_strings_kinetics%  set_sat_kinetics,if ~exist('type','var'), type = 'mass-action'; end switch type,  case 'mass-action',      kinetics = set_mass_action_kinetics(network);  case 'saturated',        kinetics = set_sat_kinetics(network);  case 'formula_strings',  kinetics = set_formula_strings_kinetics(network);end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?