Switch to unified view

a b/code/preprocessing/EEG/fastica/dispsig.m
1
function dispsig(signalMatrix, range, titlestr);
2
%DISPSIG - deprecated!
3
%
4
% Please use icaplot instead.
5
%
6
%   See also ICAPLOT
7
8
% @(#)$Id$
9
10
fprintf('\nNote: DISPSIG is now deprecated! Please use ICAPLOT.\n');
11
12
if nargin < 3, titlestr = ''; end
13
if nargin < 2, range = 1:size(signalMatrix, 1); end
14
15
icaplot('dispsig',signalMatrix',0,range,range,titlestr);