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

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

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