ComplexSparseMatrix.Multiply Method (ComplexSparseMatrix,Complex[]) |
Multiply sparse matrix
A and column array
x,

.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static Complex[] Multiply(
ComplexSparseMatrix A,
Complex[] x
)
Public Shared Function Multiply (
A As ComplexSparseMatrix,
x As Complex()
) As Complex()
public:
static array<Complex>^ Multiply(
ComplexSparseMatrix^ A,
array<Complex>^ x
)
static member Multiply :
A : ComplexSparseMatrix *
x : Complex[] -> Complex[]
Parameters
- A
- Type: Imsl.Math.ComplexSparseMatrix
A ComplexSparseMatrix matrix.
- x
- Type:Imsl.Math.Complex[]
A Complex column array.
Return Value
Type:
Complex[]
A
Complex vector representing the product of the arguments,

.
ExceptionsException | 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