fftcode.h

来自「普林斯顿开发的快速球面调和变换算法」· C头文件 代码 · 共 27 行

H
27
字号
// FFTcode.h: interface for the FFTcode class.
//
//////////////////////////////////////////////////////////////////////
#include "indextables.h"
#include "permroots.h"

#if !defined(AFX_FFTCODE_H__6D9E68E9_5600_4670_957D_837700BF2BDA__INCLUDED_)
#define AFX_FFTCODE_H__6D9E68E9_5600_4670_957D_837700BF2BDA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class FFTcode  
{
public:
	indextables ind;
	void FFTInterp( double *reals, double *imags, double *r_vals, double *i_vals, int N,int K, double *workspace, int brflag );
	void FFTEval( double *reals, double *imags, double *r_vals,double *i_vals, int N, int K, double *workspace, int brflag);
	static int ilog2fast(int value);
	FFTcode();
	virtual ~FFTcode();

};

#endif // !defined(AFX_FFTCODE_H__6D9E68E9_5600_4670_957D_837700BF2BDA__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?