Mercurial > hg > octave-nkf
diff scripts/signal/fftconv.m @ 3457:e031284eea27
[project @ 2000-01-19 08:49:56 by jwe]
author | jwe |
---|---|
date | Wed, 19 Jan 2000 08:50:14 +0000 |
parents | 858695b3ed62 |
children | 22bd65326ec1 |
line wrap: on
line diff
--- a/scripts/signal/fftconv.m +++ b/scripts/signal/fftconv.m @@ -39,7 +39,7 @@ endif if (! (is_vector (a) && is_vector (b))) - error ("fftconv: both a and b should be vectors"); + error ("fftconv: both a and b should be vectors"); endif la = length (a); lb = length (b); @@ -52,7 +52,7 @@ if (nargin == 2) c = fftfilt (a, b); else - if !(is_scalar (N)) + if (! (is_scalar (N))) error ("fftconv: N has to be a scalar"); endif c = fftfilt (a, b, N);