SparseMatricesCSR.jl
SparseMatricesCSR.jl copied to clipboard
Constructor from a dense matrix
It'd be nice to have a constructor from a dense matrix, or ideally AbstractMatrix
:slightly_smiling_face: Unless I'm totally missing it in the (sparse :upside_down_face:) documentation
Adding on, is there a better way to convert a sparse matrix A
from CSC to CSR besides the following?
Acsr = SparseMatricesCSR.SparseMatrixCSR(transpose(sparse(transpose(A))))