-
Notifications
You must be signed in to change notification settings - Fork 3
SparseMatrixCoordinate
Johnnoe edited this page Aug 27, 2023
·
1 revision
A value representing a single non-zero in a SparseMatrix. This format is not used internally, but can be generated using the SparseMatrix.to_coordinate_array() function.
Property | Description |
---|---|
row | The row index within the SparseMatrix. |
column | The column index within the SparseMatrix. |
value | The value of the non-zero within the SparseMatrix. |