pub fn create_sparse_from_ndarray(
data: &Array2<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 Array2
data: data matrixbackend_file: file path to the sparse matrixbackend: backend type (HDF5 or Zarr)