バージョン

MatrixProduct(ComplexMatrix,ComplexMatrix) メソッド

2 つの ComplexMatrix インスタンスの積を返します。
シンタックス
'宣言
 
Public Overloads Shared Function MatrixProduct( _
   ByVal x1 As ComplexMatrix, _
   ByVal x2 As ComplexMatrix _
) As ComplexMatrix
public static ComplexMatrix MatrixProduct( 
   ComplexMatrix x1,
   ComplexMatrix x2
)

パラメータ

x1
最初の 2 次元 ComplexMatrix。
x2
2 番目の 2 次元 ComplexMatrix。

戻り値の型

2 つの ComplexMatrices の積。
例外
例外解説
System.ArithmeticExceptionx1 または x2 が 2 次元でない場合に発生します。
System.ArithmeticException x1 の 2 番目の次元が x2 の最初の次元とサイズが異なる場合に発生します。
参照