diff scripts/signal/fftconv.m @ 3426:f8dde1807dee

[project @ 2000-01-13 08:40:00 by jwe]
author jwe
date Thu, 13 Jan 2000 08:40:53 +0000
parents 0748b03c3510
children 858695b3ed62
line wrap: on
line diff
--- a/scripts/signal/fftconv.m
+++ b/scripts/signal/fftconv.m
@@ -23,7 +23,7 @@
 ## with length equal to the @code{length (a) + length (b) - 1}.  If @var{a}
 ## and @var{b} are the coefficient vectors of two polynomials, the returned
 ## value is the coefficient vector of the product polynomial.
-## 
+##
 ## The computation uses the FFT by calling the function @code{fftfilt}.  If
 ## the optional argument @var{n} is specified, an N-point FFT is used.
 ## @end deftypefn
@@ -53,7 +53,7 @@
       c = fftfilt (a, b);
     else
       if !(is_scalar (N))
-	error ("fftconv: N has to be a scalar");
+        error ("fftconv: N has to be a scalar");
       endif
       c = fftfilt (a, b, N);
     endif