MatrixMultiply Method (Double, Double) |
Multiply two rectangular matrices, a * b.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double[,] Multiply(
double[,] a,
double[,] b
)
Public Shared Function Multiply (
a As Double(,),
b As Double(,)
) As Double(,)
public:
static array<double,2>^ Multiply(
array<double,2>^ a,
array<double,2>^ b
)
static member Multiply :
a : float[,] *
b : float[,] -> float[,]
Parameters
- a
- Type: SystemDouble
A double rectangular matrix.
- b
- Type: SystemDouble
A double rectangular matrix.
Return Value
Type:
Double
The
double matrix product of
a * b.
Exceptions Exception | Condition |
---|
ArgumentException |
is thrown when the number of columns in a is not equal to the number
of rows in b |
See Also