dispsig.m
来自「经典的独立成分分析算法(Fast算法)」· M 代码 · 共 16 行
M
16 行
function dispsig(signalMatrix, range, titlestr);%DISPSIG - deprecated!%% Please use icaplot instead.%% See also ICAPLOT% @(#)$Id: dispsig.m,v 1.2 2003/04/05 14:23:57 jarmo Exp $fprintf('\nNote: DISPSIG is now deprecated! Please use ICAPLOT.\n');if nargin < 3, titlestr = ''; endif nargin < 2, range = 1:size(signalMatrix, 1); endicaplot('dispsig',signalMatrix',0,range,range,titlestr);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?