ComplexMatrixMultiply Method (Complex, Complex, Int32) |
Multiply two Complex rectangular arrays, a * b, using multiple processors.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex[,] Multiply(
Complex[,] a,
Complex[,] b,
int processors
)
Public Shared Function Multiply (
a As Complex(,),
b As Complex(,),
processors As Integer
) As Complex(,)
public:
static array<Complex,2>^ Multiply(
array<Complex,2>^ a,
array<Complex,2>^ b,
int processors
)
static member Multiply :
a : Complex[,] *
b : Complex[,] *
processors : int -> Complex[,]
Parameters
- a
- Type: Imsl.MathComplex
A Complex rectangular array.
- b
- Type: Imsl.MathComplex
A Complex rectangular array.
- processors
- Type: SystemInt32
An int which specifies the number of processors to use. If
processors is less than 1, then processors = 1 is used.
Return Value
Type:
Complex
The
Complex matrix product of
a times
bSee Also