Click or drag to resize
ComplexSparseMatrixMultiply Method (Complex)
Multiply the matrix by a vector.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Complex[] Multiply(
	Complex[] x
)

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, Ax.
Exceptions
ExceptionCondition
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