SparseMatrixMultiply Method (SparseMatrix, Double) |
Multiply sparse matrix
A and column array
x,
.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double[] Multiply(
SparseMatrix A,
double[] x
)
Public Shared Function Multiply (
A As SparseMatrix,
x As Double()
) As Double()
public:
static array<double>^ Multiply(
SparseMatrix^ A,
array<double>^ x
)
static member Multiply :
A : SparseMatrix *
x : float[] -> float[]
Parameters
- A
- Type: Imsl.MathSparseMatrix
A SparseMatrix matrix.
- x
- Type: SystemDouble
A double column array.
Return Value
Type:
Double
A
double vector representing the product of the arguments,
.
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