IMSL C# Numerical Library

ComplexMatrix.Multiply Method (Complex[,], Complex[,], Int32)

Multiply two Complex rectangular arrays, a * b, using multiple threads.

public static Complex[,] Multiply(
   Complex[,] a,
   Complex[,] b,
   int threads
);

Parameters

a
A Complex rectangular array.
b
A Complex rectangular array.
threads
An int which specifies the number of threads to use. If threads is less than 1, then threads = 1 is used.

Return Value

The Complex matrix product of a times b

See Also

ComplexMatrix Class | Imsl.Math Namespace | ComplexMatrix.Multiply Overload List