reduceg.m
来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 13 行
M
13 行
% function newG = reduceG(ind,G)%% keeps same G, but alters some entries to only the specified ind% (to use in showClassTraces)function newG = reduceG(ind,G)newG=G;newG.numSamples=length(ind);newG.D=G.D(ind,:);newG.u=G.u(ind);newG.sigmas=G.sigmas(ind);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?