Download this file

16 lines (11 with data), 402 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
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 = ''; end
if nargin < 2, range = 1:size(signalMatrix, 1); end
icaplot('dispsig',signalMatrix',0,range,range,titlestr);