Creates a new instance of SparseMatrix. Initially this is the zero matrix.

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

Syntax

C#
public SparseMatrix(
	int nRows,
	int nColumns
)
Visual Basic (Declaration)
Public Sub New ( _
	nRows As Integer, _
	nColumns As Integer _
)
Visual C++
public:
SparseMatrix(
	int nRows, 
	int nColumns
)

Parameters

nRows
Type: System..::.Int32
An int specifying the number of rows in the sparse matrix.
nColumns
Type: System..::.Int32
An int specifying the number of columns in the sparse matrix.

See Also