home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- fft.h
-
- 03/02/08 Xiaohong
- *************************************************************************/
- #ifndef _INCLUDE_FFT_H_____________________________
- #define _INCLUDE_FFT_H_____________________________
-
- #define LOGBLKSIZE 10
- #define BLKSIZE 1024
-
- bool fft(double x_real[BLKSIZE],
- double x_imag[BLKSIZE],
- double energy[BLKSIZE],
- double phi[BLKSIZE],
- const int N);
- #endif