Module serial

Source
Expand description

Serial routines for converting between matrix formats.

All routines in this module are single-threaded. At present these routines offer no advantage over using the From trait, but future changes to the API might offer more control to the user.

Functionsยง

convert_coo_csc
Converts a CooMatrix to a CscMatrix.
convert_coo_csr
Converts a CooMatrix to a CsrMatrix.
convert_coo_dense
Converts a CooMatrix to a dense matrix.
convert_csc_coo
Converts a CscMatrix to a CooMatrix.
convert_csc_csr
Converts a CscMatrix to a CsrMatrix.
convert_csc_dense
Converts a CscMatrix to a dense matrix.
convert_csr_coo
Converts a CsrMatrix to a CooMatrix.
convert_csr_csc
Converts a CsrMatrix to a CscMatrix.
convert_csr_dense
Converts a CsrMatrix to a dense matrix.
convert_dense_coo
Converts a dense matrix to CooMatrix.
convert_dense_csc
Converts a dense matrix to a CscMatrix.
convert_dense_csr
Converts a dense matrix to a CsrMatrix.
OSZAR »