Sparse-Matrix icon indicating copy to clipboard operation
Sparse-Matrix copied to clipboard

C++ implementation of sparse matrix using CRS (Compressed Row Storage) format

Results 8 Sparse-Matrix issues
Sort by recently updated
recently updated
newest added

1. **Matrix operations** - [ ] `operator[][]` (both getter and setter) - #12 - [ ] `scalar * matrix` - [ ] `matrix / scalar` - [ ] transposition -...

from a specified row, get its columns in a vector

- given a specific row, remove any edge - given a specific row & col, remove the specified edge

I guess we should get the row and col first, and val afterwards

Hi there, I just forked this repository.. It has a lot of potential. Are you thinking of explicitly storing zero elements through the the [] operator? Or would setting values...