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 Add(
	VectorDenseComplex c,
	_VectorComplex a,
	_VectorComplex b
)
Visual Basic
Public Shared Function Add ( 
	c As VectorDenseComplex,
	a As _VectorComplex,
	b As _VectorComplex
) As VectorDenseComplex
Visual C++
public:
static VectorDenseComplex^ Add(
	VectorDenseComplex^ c, 
	_VectorComplex^ a, 
	_VectorComplex^ b
)
static member Add : 
        c : VectorDenseComplex * 
        a : _VectorComplex * 
        b : _VectorComplex -> VectorDenseComplex 

Parameters

c
タイプ: Mol..::..VectorDenseComplex
結果の密なベクトル
a
タイプ: Mol..::.._VectorComplex
右辺項第一ベクトル
b
タイプ: Mol..::.._VectorComplex
右辺項第二ベクトル

Return Value

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

参照