freqtrans.h

来自「面向软件工程的Visual C++网络程序开发」· C头文件 代码 · 共 20 行

H
20
字号
// ==== 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 + =
减小字号Ctrl + -
显示快捷键?