ComplexSparseMatrixMultiply Method (Complex) |
Multiply the matrix by a vector.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Complex[] Multiply(
Complex[] x
)
Public Function Multiply (
x As Complex()
) As Complex()
public:
array<Complex>^ Multiply(
array<Complex>^ x
)
member Multiply :
x : Complex[] -> Complex[]
Parameters
- x
- Type: Imsl.MathComplex
A Complex column array.
Return Value
Type:
Complex
A
Complex vector representing the product of the constructed matrix
and
x,
.
Exceptions Exception | Condition |
---|
ArgumentException |
is thrown when the number of columns of the matrix represented
by this object is not equal to the number of elements in the
input column vector.
|
See Also