pub fn create_sparse_from_dmatrix(
data: &DMatrix<f32>,
backend_file: Option<&str>,
backend: Option<&SparseIoBackend>,
) -> Result<Box<dyn SparseIo<IndexIter = Vec<usize>>>>Expand description
Create a sparse matrix io (backend) with dense DMatrix
data: data matrixbackend_file: file path to the sparse matrixbackend: backend type (HDF5 or Zarr)