Click or drag to resize

NMathFunctionsTransposeProduct(DoubleComplexCsrSparseMatrix, DoubleComplexVector, DoubleComplexVector) Method

Product of the transpose of a 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 void TransposeProduct(
	DoubleComplexCsrSparseMatrix A,
	DoubleComplexVector x,
	DoubleComplexVector y
)

Parameters

A  DoubleComplexCsrSparseMatrix
Sparse matrix in compressed row format.
x  DoubleComplexVector
A vector.
y  DoubleComplexVector
The matrix-vector product
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of rows in A is not equal to the length of x.
See Also