IMSL C# Numerical Library

ComplexSparseMatrix.Multiply Method (Complex[], ComplexSparseMatrix)

Multiply row array x and sparse matrix A, x^TA.

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

Parameters

x
A Complex row array.
A
A ComplexSparseMatrix matrix.

Return Value

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

Exceptions

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

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