Mol(Math Object Library) fot .Net
アッセンブリー: Mol.Net (in Mol.Net.dll)
y = alpha*A*x + beta*y という形の計算を実行します。ここで A は密エルミート行列、 x と y はベクトル、alpha と beta は Complex の定数です。
名前空間: Molアッセンブリー: Mol.Net (in Mol.Net.dll)
構文
C# |
---|
public static void LeMv( VectorDenseComplex y, MatrixDenseHermite A, VectorDenseComplex x, Complex alpha, Complex beta ) |
Visual Basic |
---|
Public Shared Sub LeMv ( y As VectorDenseComplex, A As MatrixDenseHermite, x As VectorDenseComplex, alpha As Complex, beta As Complex ) |
Visual C++ |
---|
public: static void LeMv( VectorDenseComplex^ y, MatrixDenseHermite^ A, VectorDenseComplex^ x, Complex alpha, Complex beta ) |
static member LeMv : y : VectorDenseComplex * A : MatrixDenseHermite * x : VectorDenseComplex * alpha : Complex * beta : Complex -> unit |
Parameters
- y
- タイプ: Mol..::..VectorDenseComplex
計算結果を格納するベクトルです
- A
- タイプ: Mol..::..MatrixDenseHermite
密エルミート行列
- x
- タイプ: Mol..::..VectorDenseComplex
Aに乗算する密ベクトル
- alpha
- タイプ: System.Numerics..::..Complex
A の各要素に掛ける Complex 値
- beta
- タイプ: System.Numerics..::..Complex
y の各要素に掛ける Complex 値