📄 freqtrans.h
字号:
// ==== File : FreqTrans.h ===
#ifndef FREQTRANS_H
#define FREQTRANS_H
#include "Complex.h"
#ifndef MYFREQTRANSLIB
#define MYFREQTRANSLIB _declspec(dllimport)
#endif
MYFREQTRANSLIB void FFT(CComplex* TD, CComplex* FD, int power);
MYFREQTRANSLIB void IFFT(CComplex* FD, CComplex* TD, int power);
MYFREQTRANSLIB void DCT(double* f, double* F, int power);
MYFREQTRANSLIB void IDCT(double*F, double* f, int power);
MYFREQTRANSLIB void WALh(double *f, double *W, int power);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -