home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / dsp4tool / fft.h < prev    next >
Encoding:
Text File  |  1994-02-19  |  479 b   |  17 lines

  1. /*
  2.  * FFT.H -- Header for Fourier transform module
  3.  *
  4.  *  Copyright (C) 1988-1994 by Alef Null. All rights reserved.
  5.  *  Author(s): J Vuori
  6.  *
  7.  *  Modification(s):
  8.  */
  9.  
  10.  
  11. void DirectWin(struct complex *dest, int *src, int n);
  12. void HanningWin(struct complex *dest, int *src, int n);
  13. void HammingWin(struct complex *dest, int *src, int n);
  14. void BlackmanWin(struct complex *dest, int *src, int n);
  15. void fft(struct complex x[], int m);
  16. int  Bit_Reverse(int i, int n);
  17.