gaoweidong
2026-01-13 c5eeada2c735b0209a061a233483c5cfc29c2230
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _FFT_HELPER_HH_7543285760478075043
#define _FFT_HELPER_HH_7543285760478075043
class FFTHelper
{
private:
    void bitrp(double* xreal, double* ximag, int n);
public:
    int FFT(double* xreal, double* ximag, int len);
    int IFFT(double* xreal, double* ximag, int len);
};
 
#endif