fft.h
来自「快速傅立叶算法」· C头文件 代码 · 共 27 行
H
27 行
// FFT.h: interface for the CFFT class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FFT_H__3CAAACB7_9164_4868_ABC6_03CDD28D74EE__INCLUDED_)
#define AFX_FFT_H__3CAAACB7_9164_4868_ABC6_03CDD28D74EE__INCLUDED_
#include "StdAfx.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CFFT
{
public:
double mabs(complex a);
void RealFFT( double realData[], int length , int sign );
complex cexp(complex a);
void b2fft( complex x[], int n, int sign );
CFFT();
virtual ~CFFT();
complex *pComplex;
};
#endif // !defined(AFX_FFT_H__3CAAACB7_9164_4868_ABC6_03CDD28D74EE__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?