📄 set_kinetics.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -