dispsig.m

来自「这是一个关于盲源分离独立成分分析方法(ICA)的软件包」· M 代码 · 共 28 行

M
28
字号
function dispsig(signalMatrix);


% DISPSIG - Display Signals
%
% DISPSIG(signalMatrix) displays a set of signals in a plot matrix.
% Assumes that the signals are column vectors of signalMatrix.
%
%
% EXAMPLE
%       dispsig (sig)
%       title('Signals')
%
%
% This function is needed by FASTICA and FASTICAG

% 16.3.1998

numSignals = size (signalMatrix, 2);

for i = 1:numSignals,
  subplot (numSignals,1, i);
  plot (signalMatrix (:,i));
end
% Move the handle to the first subplot, so that the title may
% easily be added to the top.
subplot (numSignals,1, 1);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?