IMSL C# Numerical Library

ComplexSparseMatrix.Multiply Method (ComplexSparseMatrix, Complex[])

Multiply sparse matrix A and column array x, A x.

public static Complex[] Multiply(
   ComplexSparseMatrix A,
   Complex[] x
);

Parameters

A
A ComplexSparseMatrix matrix.
x
A Complex column array.

Return Value

A Complex vector representing the product of the arguments, A x.

Exceptions

Exception Type 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

ComplexSparseMatrix Class | Imsl.Math Namespace | ComplexSparseMatrix.Multiply Overload List