ComplexMatrixMultiply Method (Complex, Complex) |
Multiply two Complex rectangular arrays, a * b.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex[,] Multiply(
Complex[,] a,
Complex[,] b
)
Public Shared Function Multiply (
a As Complex(,),
b As Complex(,)
) As Complex(,)
public:
static array<Complex,2>^ Multiply(
array<Complex,2>^ a,
array<Complex,2>^ b
)
static member Multiply :
a : Complex[,] *
b : Complex[,] -> Complex[,]
Parameters
- a
- Type: Imsl.MathComplex
A Complex rectangular array.
- b
- Type: Imsl.MathComplex
A Complex rectangular array.
Return Value
Type:
Complex
The
Complex matrix product of
a times
b.
Exceptions Exception | Condition |
---|
ArgumentException |
is thrown when the number of columns in a is not equal to the
number of rows in b.
|
See Also