Matrix transpose inner product of two sparse matrices in compressed row (CSR) format. The
result is a dense matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static DoubleMatrix DenseTransposeProduct( DoubleCsrSparseMatrix A, DoubleCsrSparseMatrix B ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function DenseTransposeProduct ( _ A As DoubleCsrSparseMatrix, _ B As DoubleCsrSparseMatrix _ ) As DoubleMatrix |
| Visual C++ |
|---|
public: static DoubleMatrix^ DenseTransposeProduct( DoubleCsrSparseMatrix^ A, DoubleCsrSparseMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
A sparse matrix in CSR format.
- B
- Type: CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
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
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the number of rows in A is not equal to the number of rows in B. |