Mol(Math Object Library) fot .Net
アッセンブリー: Mol.Net (in Mol.Net.dll)
計算結果情報を保持するEgvSolverオブジェクト
エルミート性を持つ一般実数行列(対角要素を含まない、下三角部分はゼロ)の汎用固有値問題(Ax=λBx)を解きます。
行列の対角成分(を含まない)下の下三角部分の要素は参照されません。
指定した行列やベクトルは内容が書き換えられます。必要なら Clone() メソッド等で別途保存してください。
名前空間: Mol指定した行列やベクトルは内容が書き換えられます。必要なら Clone() メソッド等で別途保存してください。
アッセンブリー: Mol.Net (in Mol.Net.dll)
構文
C# |
---|
public static EgvSolver Solve2( VectorDenseComplex Values, MatrixDenseGeneralComplex Vectors, MatrixDenseGeneralComplex A, MatrixDenseGeneralComplex B, double min_value, double max_value, double eps ) |
Visual Basic |
---|
Public Shared Function Solve2 ( Values As VectorDenseComplex, Vectors As MatrixDenseGeneralComplex, A As MatrixDenseGeneralComplex, B As MatrixDenseGeneralComplex, min_value As Double, max_value As Double, eps As Double ) As EgvSolver |
Visual C++ |
---|
public: static EgvSolver^ Solve2( VectorDenseComplex^ Values, MatrixDenseGeneralComplex^ Vectors, MatrixDenseGeneralComplex^ A, MatrixDenseGeneralComplex^ B, double min_value, double max_value, double eps ) |
static member Solve2 : Values : VectorDenseComplex * Vectors : MatrixDenseGeneralComplex * A : MatrixDenseGeneralComplex * B : MatrixDenseGeneralComplex * min_value : float * max_value : float * eps : float -> EgvSolver |
Parameters
- Values
- タイプ: Mol..::..VectorDenseComplex
固有値を受け取るベクトル(サイズは A の行数以上)。null なら新規に作成されます。
- Vectors
- タイプ: Mol..::..MatrixDenseGeneralComplex
固有ベクトルを格納するための行列。null なら新規に作成されます。
- A
- タイプ: Mol..::..MatrixDenseGeneralComplex
固有値を計算するためのエルミート行列
- B
- タイプ: Mol..::..MatrixDenseGeneralComplex
右辺行列、Aと同じタイプ・サイズで正定値である必要があります
- min_value
- タイプ: System..::..Double
計算する最小固有値
- max_value
- タイプ: System..::..Double
計算する最大固有値
- eps
- タイプ: System..::..Double
収束判定定数
Return Value
タイプ: EgvSolver計算結果情報を保持するEgvSolverオブジェクト