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

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

構文

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

Parameters

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

Return Value

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

参照