mathface.h
来自「普林斯顿开发的快速球面调和变换算法」· C头文件 代码 · 共 35 行
H
35 行
// 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 + =
减小字号Ctrl + -
显示快捷键?