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