Click or drag to resize

NMathFunctionsDenseTransposeProduct(FloatComplexCsrSparseMatrix, FloatComplexCsrSparseMatrix) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexMatrix DenseTransposeProduct(
	FloatComplexCsrSparseMatrix A,
	FloatComplexCsrSparseMatrix B
)

Parameters

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

Return Value

FloatComplexMatrix
The matrix inner product of the transpose of A with B as a dense matrix.
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