Difference between sparse and dense matrix
Answers
Answered by
0
Dense matrix store every entry in the matrix. Sparse matrix only store the nonzero entries. Sparse matrix don't have a lot of extra features, and some algorithms may not work for them. You use them when you need to work with matrices that would be too big for the computer to handle them, but they are mostly zero, so they compress easily
Similar questions