Constructs a dense matrix from a sparse matrix in Compressed Row (CSR) format.

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

Syntax

C#
public static DoubleMatrix ToDenseMatrix(
	DoubleCsrSparseMatrix A
)
Visual Basic (Declaration)
Public Shared Function ToDenseMatrix ( _
	A As DoubleCsrSparseMatrix _
) As DoubleMatrix
Visual C++
public:
static DoubleMatrix^ ToDenseMatrix(
	DoubleCsrSparseMatrix^ A
)

Parameters

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

Return Value

The dense matrix version of A.

See Also