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

📄 numericalcomputmethods.h

📁 Schrodinger Equation 数值计算中的方程
💻 H
字号:
#ifndef _NumericalComputMethod_H_
#define _NumericalComputMethod_H_
#include<vector>
#include "nrtypes.h"
using namespace std;
class NumericalComputMethods
{
private:
	vector<double> eignvalue;
public:
	NumericalComputMethods::NumericalComputMethods();
    NumericalComputMethods::~NumericalComputMethods();
	void flmoon(const int n,const int nph,int &jd,DP &frac);
	void rot(Mat_IO_DP &a,const DP s, const DP tau,const int i,
		const int j,const int k,const int l);
	void jacobitransformation(Mat_IO_DP &a,Vec_O_DP &d, Mat_O_DP &v,
		int &nrot);
	void ProduceMatrix(Mat_IO_DP& M);
	void determineIndexMiniElem(int& i1,int& i2,int& i3,int& i4,Vec_DP v);
	
};

#endif

⌨️ 快捷键说明

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