Mercurial > hg > octave-lyh
diff scripts/signal/fftfilt.m @ 2312:204cc7db6f4a
[project @ 1996-07-11 21:20:36 by jwe]
author | jwe |
---|---|
date | Thu, 11 Jul 1996 21:20:36 +0000 |
parents | 2b5788792cad |
children | 5ca126254d15 |
line wrap: on
line diff
--- a/scripts/signal/fftfilt.m +++ b/scripts/signal/fftfilt.m @@ -22,14 +22,16 @@ ## 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. + +## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> +## Created: 3 September 1994 +## Adapted-By: jwe function y = fftfilt (b, x, N) - ## Written by KH (Kurt.Hornik@ci.tuwien.ac.at) on Sep 3, 1994 - - ## Reference: Oppenheim & Schafer (1989). Discrete-time Signal - ## Processing (Chapter 8). Prentice-Hall. - ## If N is not specified explicitly, we do not use the overlap-add ## method at all because loops are really slow. Otherwise, we only ## ensure that the number of points in the FFT is the smallest power