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

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplexMatrix DenseTransposeProduct(
	DoubleComplexCsrSparseMatrix A,
	DoubleComplexCsrSparseMatrix B
)
Visual Basic (Declaration)
Public Shared Function DenseTransposeProduct ( _
	A As DoubleComplexCsrSparseMatrix, _
	B As DoubleComplexCsrSparseMatrix _
) As DoubleComplexMatrix
Visual C++
public:
static DoubleComplexMatrix^ DenseTransposeProduct(
	DoubleComplexCsrSparseMatrix^ A, 
	DoubleComplexCsrSparseMatrix^ B
)

Parameters

A
Type: CenterSpace.NMath.Matrix..::.DoubleComplexCsrSparseMatrix
A sparse matrix in CSR format.
B
Type: CenterSpace.NMath.Matrix..::.DoubleComplexCsrSparseMatrix
A sparse matrix in CSR format.

Return Value

The matrix inner product of the transpose of A with B as a dense matrix.

Remarks

The product is formed between the transpose of the first argument and the second.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the number of rows in A is not equal to the number of rows in B.

See Also