Mol(Math Object Library) fot .Net
c = b * a: 任意の Complex のベクトルと Complex の行列の掛け算を実行します。 戻り値は結果ベクトル c ですが、引数に c==null を渡した場合は c が作成されます。

名前空間: Mol
アッセンブリー: Mol.Net (in Mol.Net.dll)

構文

C#
public static VectorDenseComplex Mul(
	VectorDenseComplex c,
	_VectorComplex b,
	_MatrixComplex a,
	bool fConj
)
Visual Basic
Public Shared Function Mul ( 
	c As VectorDenseComplex,
	b As _VectorComplex,
	a As _MatrixComplex,
	fConj As Boolean
) As VectorDenseComplex
Visual C++
public:
static VectorDenseComplex^ Mul(
	VectorDenseComplex^ c, 
	_VectorComplex^ b, 
	_MatrixComplex^ a, 
	bool fConj
)
static member Mul : 
        c : VectorDenseComplex * 
        b : _VectorComplex * 
        a : _MatrixComplex * 
        fConj : bool -> VectorDenseComplex 

Parameters

c
タイプ: Mol..::..VectorDenseComplex
結果を格納するベクトル
b
タイプ: Mol..::.._VectorComplex
任意の Complex ベクトル
a
タイプ: Mol..::.._MatrixComplex
任意の Complex 行列
fConj
タイプ: System..::..Boolean
true なら b の複素共役を掛け算に使用します。

Return Value

タイプ: VectorDenseComplex
結果ベクトル(密)

参照