?? fft.h
字號:
/*
* fft.h - fast fourier transformation definitions(base DIT)
*
* Copyright (C) lartely <luda@hitwh.edu.cn>
*
*/
#include "complex.h"
#include <math.h>
#include <malloc.h>
#include "dft.h"
#ifndef _FFT_DOT_H_
#define _FFT_DOT_H_
class CFFT
{
private:
static void changeOrder(complex *,complex *,int);
static void FFT_RUN(double *,complex *,int );
static void IFFT_RUN(complex *,double *,int );
public:
CFFT(void);
static void FFT(double *,complex*,int);
static void IFFT(complex *,double *,int);
static int IS2N(int);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -