SparseMatrix Constructor (Int32, Int32) |
Creates a new instance of SparseMatrix. Initially this is the
zero matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public SparseMatrix(
int nRows,
int nColumns
)
Public Sub New (
nRows As Integer,
nColumns As Integer
)
public:
SparseMatrix(
int nRows,
int nColumns
)
new :
nRows : int *
nColumns : int -> SparseMatrix
Parameters
- nRows
- Type: SystemInt32
An int specifying the number of rows in the sparse matrix.
- nColumns
- Type: SystemInt32
An int specifying the number of columns in the sparse matrix.
See Also