Mol(Math Object Library) fot .Net
アッセンブリー: Mol.Net (in Mol.Net.dll)
A = A + alpha*x*y' という計算を実行します。 ここで A は任意の密な一般複素数行列、 x と y は複素数ベクトル、
そして alpha は実数です。 さらに y' は列ベクトルの転置を意味するので x*y' の結果は(Aと同じサイズの)行列になります。
名前空間: Molアッセンブリー: Mol.Net (in Mol.Net.dll)
構文
C# |
---|
public static void LeMvv( MatrixDenseGeneralComplex A, Complex alpha, VectorDenseComplex x, VectorDenseComplex y, bool fConjY ) |
Visual Basic |
---|
Public Shared Sub LeMvv ( A As MatrixDenseGeneralComplex, alpha As Complex, x As VectorDenseComplex, y As VectorDenseComplex, fConjY As Boolean ) |
Visual C++ |
---|
public: static void LeMvv( MatrixDenseGeneralComplex^ A, Complex alpha, VectorDenseComplex^ x, VectorDenseComplex^ y, bool fConjY ) |
static member LeMvv : A : MatrixDenseGeneralComplex * alpha : Complex * x : VectorDenseComplex * y : VectorDenseComplex * fConjY : bool -> unit |
Parameters
- A
- タイプ: Mol..::..MatrixDenseGeneralComplex
計算対象の行列
- alpha
- タイプ: System.Numerics..::..Complex
実数係数
- x
- タイプ: Mol..::..VectorDenseComplex
第一ベクトル
- y
- タイプ: Mol..::..VectorDenseComplex
第二ベクトル
- fConjY
- タイプ: System..::..Boolean
true なら y の複素共役を計算に用います。false なら y をそのまま転置して計算します。