home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / signal / fftconv.m next >
Text File  |  1996-09-28  |  2KB  |  59 lines

  1. # Copyright (C) 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function c = fftconv (a, b, N)
  16.  
  17. # usage: fftconv (a, b [, N])
  18. #
  19. # c = fftconv (a, b) returns the convolution of the vectors a and b,
  20. # a vector with length equal to length (a) + length (b) - 1.  
  21. # If a and b are the coefficient vectors of two polynomials, c is
  22. # the coefficient vector of the product polynomial.
  23. #
  24. # The computation uses the FFT by calling fftfilt.  If the optional
  25. # argument N is specified, an N-point FFT is used.
  26.  
  27. # Written by KH (Kurt.Hornik@ci.tuwien.ac.at) on Sep 3, 1994.
  28.   
  29.   if (nargin < 2 || nargin > 3)
  30.     usage ("fftconv (b, x [, N])");
  31.   endif
  32.   
  33.   if (is_matrix (a) || is_matrix (b))
  34.     error ("fftconv:  both a and b should be vectors");
  35.   endif
  36.   la = length (a);
  37.   lb = length (b);
  38.   if ((la == 1) || (lb == 1))
  39.     c = a * b;
  40.   else
  41.     lc = la + lb - 1;
  42.     a(lc) = 0;
  43.     b(lc) = 0;
  44.     if (nargin == 2)
  45.       c = fftfilt (a, b);
  46.     else
  47.       if !(is_scalar (N))
  48.     error ("fftconv: N has to be a scalar");
  49.       endif
  50.       c = fftfilt (a, b, N);
  51.     endif
  52.   endif
  53.  
  54. endfunction
  55.