Mol(Math Object Library) fot .Net
c = a * b: Matrix * Matrix
計算結果は c に格納され、c が結果として返ります。第一引数 c == null の場合は、新規に行列 c を作成します。

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

構文

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

Parameters

c
タイプ: Mol..::..MatrixDenseGeneralComplex
結果の行列
a
タイプ: Mol..::.._MatrixComplex
行列
b
タイプ: Mol..::.._MatrixComplex
行列

Return Value

タイプ: MatrixDenseGeneralComplex
結果の Matrix

参照