IMSL C# Numerical Library

ComplexSparseMatrix.MultiplyHermitian Method 

Multiply sparse Hermitian matrix A and column vector x.

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

Parameters

A
A Hermitian ComplexSparseMatrix, where only the lower triangular part of the matrix is to be used.
x
A Complex vector.

Return Value

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

Exceptions

Exception Type Condition
ArgumentException is thrown when the input matrix is not square or 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