FsSparseMatrix<'T> Type
A FsSparseMatrix
Constructors
Constructor | Description |
Full Usage:
FsSparseMatrix(defaultEmptyValue, sparseValues, sparseRowOffsets, ncols, columnValues)
Parameters:
'T
sparseValues : 'T array
sparseRowOffsets : int array
ncols : int
columnValues : int array
Returns: FsSparseMatrix<'T>
|
|
Instance members
Instance member | Description |
Full Usage:
this[i, j]
Parameters:
int
j : int
Returns: 'T
|
|
Full Usage:
this.MaxIndexForRow
Parameters:
int
Returns: int
|
|
Full Usage:
this.MinIndexForRow
Parameters:
int
Returns: int
|
|
Full Usage:
this.NumCols
Returns: int
|
|
Full Usage:
this.NumRows
Returns: int
|
|
Full Usage:
this.SparseColumnValues
Returns: int array
|
|
Full Usage:
this.SparseRowOffsets
Returns: int array
|
|
Full Usage:
this.SparseValues
Returns: 'T array
|
|
Static members
Static member | Description |
Full Usage:
FsSparseMatrix.init emptyValue maxi maxj s
Parameters:
'T
maxi : int
maxj : int
s : (int * int * 'T) seq
Returns: FsSparseMatrix<'T>
|
|
|