MatrixMultiply Method (Double, Double, Int32) |
Multiply two rectangular arrays, a * b, using multiple processors.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double[,] Multiply(
double[,] a,
double[,] b,
int processors
)
Public Shared Function Multiply (
a As Double(,),
b As Double(,),
processors As Integer
) As Double(,)
public:
static array<double,2>^ Multiply(
array<double,2>^ a,
array<double,2>^ b,
int processors
)
static member Multiply :
a : float[,] *
b : float[,] *
processors : int -> float[,]
Parameters
- a
- Type: SystemDouble
A double rectangular array.
- b
- Type: SystemDouble
A double 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:
Double
The
double matrix product of
a times
bSee Also