Mercurial > hg > octave-lyh
diff scripts/signal/fftfilt.m @ 3367:0748b03c3510
[project @ 1999-11-20 14:52:38 by jwe]
author | jwe |
---|---|
date | Sat, 20 Nov 1999 14:52:42 +0000 |
parents | 8b262e771614 |
children | f8dde1807dee |
line wrap: on
line diff
--- a/scripts/signal/fftfilt.m +++ b/scripts/signal/fftfilt.m @@ -17,14 +17,15 @@ ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. -## usage: fftfilt (b, x [, N]) -## -## y = fftfilt (b, x) filters x with the FIR filter b using the FFT. -## y = fftfilt (b, x, N) uses the overlap-add method to filter x with -## b using an N-point FFT. -## -## Reference: Oppenheim & Schafer (1989). Discrete-time Signal -## Processing (Chapter 8). Prentice-Hall. +## -*- texinfo -*- +## @deftypefn {Function File} {} fftfilt (@var{b}, @var{x}, @var{n}) +## +## With two arguments, @code{fftfilt} filters @var{x} with the FIR filter +## @var{b} using the FFT. +## +## Given the optional third argument, @var{n}, @code{fftfilt} uses the +## overlap-add method to filter @var{x} with @var{b} using an N-point FFT. +## @end deftypefn ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> ## Created: 3 September 1994