⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 set_kinetics.m

📁 %The Metabolic Networks Toolbox contains functions to create, %modify, display, and simulate bioche
💻 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 + -