choose_independent_rows.m
来自「%The Metabolic Networks Toolbox contains」· M 代码 · 共 8 行
M
8 行
% [ind_matrix,choice] = choose_independent_rows(matrix)%% choose linearly independent rows from a matrix using reduced row echelon formfunction [ind_matrix,choice] = choose_independent_rows(matrix)[echelon,choice] = rref(matrix');ind_matrix = matrix(choice,:);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?