Module convert

Module convert 

Source
Expand description

Conversion utilities for sparse matrices

This module provides functions for converting between different sparse matrix formats and between sparse and dense representations.

Functionsยง

coo_to_csc
Convert a COO matrix to CSC format
coo_to_csr
Convert a COO matrix to CSR format
coo_to_dense
Convert a COO matrix to dense format
csc_to_coo
Convert a CSC matrix to COO format
csc_to_dense
Convert a CSC matrix to dense format
csr_to_coo
Convert a CSR matrix to COO format
csr_to_csc
Convert a CSR matrix to CSC format
csr_to_dense
Convert a CSR matrix to dense format
dense_to_coo
Convert a dense matrix to COO format
dense_to_csc
Convert a dense matrix to CSC format
dense_to_csr
Convert a dense matrix to CSR format