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

Parameters

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

Return Value

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

参照