'宣言 Public Overloads Shared Function MatrixProduct( _ ByVal x1 As ComplexMatrix, _ ByVal x2 As ComplexVector _ ) As ComplexMatrix
public static ComplexMatrix MatrixProduct( ComplexMatrix x1, ComplexVector x2 )
例外 | 解説 |
---|---|
System.ArithmeticException | x1 が 2 次元でない場合に発生します。 |
System.ArithmeticException | x1 の 2 番目の次元が x2 の最初の次元とサイズが異なる場合に発生します。 |