Returns the sparse matrix as a dense matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[,] ToDenseMatrix()
Visual Basic (Declaration)
Public Function ToDenseMatrix As Double(,)
Visual C++
public:
array<double,2>^ ToDenseMatrix()

Return Value

A double rectangular array containing this matrix with all of the zeros explicitly present. The number of rows and columns in the returned matrix is the same as in the sparse matrix.

See Also