Click or drag to resize

NMathFunctionsProduct(DoubleHermCsrSparseMatrix, DoubleComplexVector) Method

Product of a Hermitian sparse matrix in compressed row (CSR) format with a dense vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexVector Product(
	DoubleHermCsrSparseMatrix A,
	DoubleComplexVector x
)

Parameters

A  DoubleHermCsrSparseMatrix
Hermitian sparse matrix in compressed row format.
x  DoubleComplexVector
A vector.

Return Value

DoubleComplexVector
The matrix-vector product.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of columns in A is not equal to the length of x.
See Also