Mol(Math Object Library) fot .Net
c = a * b: ベクトル同士の(要素ごとの)掛け算を実行します。 ここで、 c は密な複素数ベクトル。a と b は任意の複素数ベクトルです。 戻り値は c を返します。引数の c が null の時は、新規にベクトル c を作成します。

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

構文

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

Parameters

c
タイプ: Mol..::..VectorDenseComplex
結果の密なベクトル
a
タイプ: Mol..::.._VectorComplex
右辺項第一ベクトル
b
タイプ: Mol..::.._VectorComplex
右辺項第二ベクトル
fConj
タイプ: System..::..Boolean
true なら a の複素共役を掛け算に使用します。

Return Value

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

参照