Click or drag to resize
ComplexSparseMatrixMultiply Method (ComplexSparseMatrix, Complex)
Multiply sparse matrix A and column array x, A x.

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

Parameters

A
Type: Imsl.MathComplexSparseMatrix
A ComplexSparseMatrix matrix.
x
Type: Imsl.MathComplex
A Complex column array.

Return Value

Type: Complex
A Complex vector representing the product of the arguments, A x.
Exceptions
ExceptionCondition
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