Sparse-Matrix
Sparse-Matrix copied to clipboard
C++ implementation of sparse matrix using CRS (Compressed Row Storage) format
1. **Matrix operations** - [ ] `operator[][]` (both getter and setter) - #12 - [ ] `scalar * matrix` - [ ] `matrix / scalar` - [ ] transposition -...
Check it out if you like!
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
get elements in a row
just auto indention
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...