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