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 aCscMatrix
. - convert_
coo_ csr - Converts a
CooMatrix
to aCsrMatrix
. - convert_
coo_ dense - Converts a
CooMatrix
to a dense matrix. - convert_
csc_ coo - Converts a
CscMatrix
to aCooMatrix
. - convert_
csc_ csr - Converts a
CscMatrix
to aCsrMatrix
. - convert_
csc_ dense - Converts a
CscMatrix
to a dense matrix. - convert_
csr_ coo - Converts a
CsrMatrix
to aCooMatrix
. - convert_
csr_ csc - Converts a
CsrMatrix
to aCscMatrix
. - 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
.