Multiply sparse matrix A and column array x,
.

Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public static double[] Multiply( SparseMatrix A, double[] x ) |
Visual Basic (Declaration) |
---|
Public Shared Function Multiply ( _ A As SparseMatrix, _ x As Double() _ ) As Double() |
Visual C++ |
---|
public: static array<double>^ Multiply( SparseMatrix^ A, array<double>^ x ) |
Parameters
- A
- Type: Imsl.Math..::.SparseMatrix
A SparseMatrix matrix.
- x
- Type: array<
System..::.Double
>[]()[]
A double column array.
Return Value
A double vector representing the product of the arguments,
Exceptions
Exception | Condition |
---|---|
System..::.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. |