home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / DATAFUN.DI$ / FFT.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  588 b   |  14 lines

  1. %FFT    Discrete Fourier transform.
  2. %    FFT(X) is the discrete Fourier transform of vector X.  If the
  3. %     length of X is a power of two, a fast radix-2 fast-Fourier
  4. %     transform algorithm is used.  If the length of X is not a
  5. %     power of two, a slower non-power-of-two algorithm is employed.
  6. %     FFT(X,N) is the N-point FFT, padded with zeros if X has less
  7. %     than N points and truncated if it has more.
  8. %     If X is a matrix, the FFT operation is applied to each column.
  9. %
  10. %     See also IFFT, FFT2, IFFT2, FFTSHIFT.
  11.  
  12. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  13. %    Built-in function.
  14.