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