⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mathface.h

📁 普林斯顿开发的快速球面调和变换算法
💻 H
字号:
// MathFace.h: interface for the MathFace class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MATHFACE_H__7A542E35_423C_4E76_B246_61EC3546B477__INCLUDED_)
#define AFX_MATHFACE_H__7A542E35_423C_4E76_B246_61EC3546B477__INCLUDED_

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

#include <math.h>
#include <ctype.h>
#include <stdio.h>


class MathFace  
{
public:
	void seanprintMMRealTable(FILE *f, double *table, int width, int height);
	void seanprintMMComplexTable(FILE *f, double *real, double *imag, int width, int height);
	void printMMComplexTable(FILE *f, double *real, double *imag, int width, int height);
	int readMMComplexTable(FILE *f, double *real, double *imag, int size, int *width, int *height, int *isReal);
	void printMMRealTable(FILE *f, double *table, int width, int height);
	int readMMRealTable(FILE *f, double *table, int size, int *width, int *height);
	void seanprintNumber(FILE *f, double real, double imag);
	void printNumber(FILE *f, double real, double imag);
	int readNumber(FILE *f, double *real, double *imag);
	MathFace();
	virtual ~MathFace();

};

#endif // !defined(AFX_MATHFACE_H__7A542E35_423C_4E76_B246_61EC3546B477__INCLUDED_)

⌨️ 快捷键说明

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