Constructs a new matrix in compressed sparse column format.
Namespace: Extreme.Mathematics.LinearAlgebra.Sparse
Assembly: Extreme.Numerics.SinglePrecision.Net40 (in Extreme.Numerics.SinglePrecision.Net40.dll) Version: 4.0.10170.0 (4.0.11003.0)
Syntax
| C# |
public SingleSparseCompressedColumnMatrix(
int rowCount,
int columnCount,
float fillFactor
)
|
| Visual Basic (Declaration) |
Public Sub New ( _
rowCount As Integer, _
columnCount As Integer, _
fillFactor As Single _
)
|
| Visual C++ |
public:
SingleSparseCompressedColumnMatrix(
int rowCount,
int columnCount,
float fillFactor
)
|
| F# |
new :
rowCount:int *
columnCount:int *
fillFactor:float32 -> SingleSparseCompressedColumnMatrix
|
Parameters
-
rowCount
- Type: System..::..Int32
The number of rows.
-
columnCount
- Type: System..::..Int32
The number of columns.
-
fillFactor
- Type: System..::..Single
A value between 0 and 1 that specifies the initial capacity of nonzero components
as a proportion of the total number of components of the matrix.
Exceptions
See Also