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 Complex[] Multiply( ComplexSparseMatrix A, Complex[] x ) |
Visual Basic (Declaration) |
---|
Public Shared Function Multiply ( _ A As ComplexSparseMatrix, _ x As Complex() _ ) As Complex() |
Visual C++ |
---|
public: static array<Complex>^ Multiply( ComplexSparseMatrix^ A, array<Complex>^ x ) |
Parameters
- A
- Type: Imsl.Math..::.ComplexSparseMatrix
A ComplexSparseMatrix matrix.
- x
- Type: array<
Imsl.Math..::.Complex
>[]()[]
A Complex column array.
Return Value
A Complex 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. |