Click or drag to resize
Matrix.Multiply Method (Double[,],Double[,], Int32)
Multiply two rectangular arrays, a * b, using multiple processors.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static double[,] Multiply(
	double[,] a,
	double[,] b,
	int processors
)

Parameters

a
Type:System.Double[,]
A double rectangular array.
b
Type:System.Double[,]
A double rectangular array.
processors
Type: System.Int32
An int which specifies the number of processors to use. If processors is less than 1, then processors = 1 is used.

Return Value

Type:Double[,]
The double matrix product of a times b
See Also