IMSL C# Numerical Library

Matrix.Multiply Method (Double[,], Double[,], Int32)

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

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

Parameters

a
A double rectangular array.
b
A double 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 double matrix product of a times b

See Also

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