diff --git a/octave/dipsig.m b/octave/dipsig.m new file mode 100644 index 0000000..de4c50a --- /dev/null +++ b/octave/dipsig.m @@ -0,0 +1,16 @@ +function dispsig(signalMatrix, range, titlestr); +%DISPSIG - deprecated! +% +% Please use icaplot instead. +% +% See also ICAPLOT + +% 24.8.1998 +% Hugo Gävert + +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);