Multiply two Complex rectangular arrays, a * b.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Complex[,] Multiply(
	Complex[,] a,
	Complex[,] b
)
Visual Basic (Declaration)
Public Shared Function Multiply ( _
	a As Complex(,), _
	b As Complex(,) _
) As Complex(,)
Visual C++
public:
static array<Complex,2>^ Multiply(
	array<Complex,2>^ a, 
	array<Complex,2>^ b
)

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular array.
b
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular array.

Return Value

The Complex matrix product of a times b.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown when the number of columns in a is not equal to the number of rows in b.

See Also