Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 509 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 509 Bytes

Compressed-Sparse-Row

Compressed Sparse Row is a general storage format that gets ride of zero values in a matrix by storing nonzero values, their indexes, and pointers in three different arrays. This way the space and performance can be substantially improved except certain cases. Check the Compressed Sparse Row.pdf file for more info.