cospmls.h

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

H
49
字号
// cospmls.h: interface for the cospmls class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_COSPMLS_H__EDBB4600_AC25_470A_92E0_D09C9E384E30__INCLUDED_)
#define AFX_COSPMLS_H__EDBB4600_AC25_470A_92E0_D09C9E384E30__INCLUDED_

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

#include "primitive.h"
#include "newFCT.h"

class cospmls  
{
public:
	primitive prim;
	newFCT newf;

public:
	double** Transpose_SemiNaive_Naive_Pml_Table(double **seminaive_naive_pml_table, int bw, int m, double *resultspace, double *workspace);
	double** SemiNaive_Naive_Pml_Table(int bw, int m, double *resultspace, double *workspace);
	int Reduced_Naive_TableSize(int bw, int m);
	void PmlTableGen(int bw, int m, double *storeplm, double *workspace);
	double** Reduced_Transpose_Spharmonic_Pml_Table(double **spharmonic_pml_table, int bw, int m, double *resultspace, double *workspace);
	double** Transpose_Spharmonic_Pml_Table(double **spharmonic_pml_table, int bw, double *resultspace, double *workspace);
	double** Reduced_Spharmonic_Pml_Table(int bw, int m, double *resultspace, double *workspace);
	double** Spharmonic_Pml_Table(int bw, double *resultspace, double *workspace);
	void Transpose_CosPmlTableGen(int bw, int m, double *cos_pml_table, double *result);
	int Transpose_RowSize(int row, int m, int bw);
	int RowSize(int m, int l);
	void CosPmlTableGenLim( int bw, int m, int lim, double *tablespace, double *workspace);
	void CosPmlTableGen(int bw, int m, double *tablespace, double *workspace);
	int TableOffset(int m, int l);
	int NewTableOffset(int m, int l);
	int Reduced_SpharmonicTableSize(int bw, int m);
	int Spharmonic_TableSize(int bw);
	int TableSize(int m, int bw);
	int Power2Ceiling(int i);

public:
	cospmls();
	virtual ~cospmls();

};

#endif // !defined(AFX_COSPMLS_H__EDBB4600_AC25_470A_92E0_D09C9E384E30__INCLUDED_)

⌨️ 快捷键说明

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