Multiply two rectangular matrices, a * b.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public static double[,] Multiply( double[,] a, double[,] b ) |
Visual Basic (Declaration) |
---|
Public Shared Function Multiply ( _ a As Double(,), _ b As Double(,) _ ) As Double(,) |
Visual C++ |
---|
public: static array<double,2>^ Multiply( array<double,2>^ a, array<double,2>^ b ) |
Parameters
- a
- Type: array<
System..::.Double
,2>[,](,)[,]
A double rectangular matrix.
- b
- Type: array<
System..::.Double
,2>[,](,)[,]
A double rectangular matrix.
Return Value
The double matrix product of a * b.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | is thrown when the number of columns in a is not equal to the number of rows in b |