Click or drag to resize

NMathFunctionsTransposeProduct(DoubleCsrSparseMatrix, DoubleCsrSparseMatrix) Method

Matrix transpose inner product of two sparse matrices in compressed row (CSR) format. The result is a sparse matrix in CSR format.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleCsrSparseMatrix TransposeProduct(
	DoubleCsrSparseMatrix A,
	DoubleCsrSparseMatrix B
)

Parameters

A  DoubleCsrSparseMatrix
A sparse matrix in CSR format.
B  DoubleCsrSparseMatrix
A sparse matrix in CSR format.

Return Value

DoubleCsrSparseMatrix
The matrix inner product of the transpose of A with B.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of rows in A is not equal to the number of rows in B.
Remarks
The product is formed between the transpose of the first argument and the second.
See Also