uestla / Sparse-Matrix

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Roadmap

uestla opened this issue · comments

  1. Matrix operations
  • operator[][] (both getter and setter) - #12
  • scalar * matrix
  • matrix / scalar
  • transposition
  • values iteration using iterator class
  1. Optimizations
  • M-M multiplication - see this PDF, chapter 5 (site 14)
  • M-M addition and subtraction
  1. Other
  • add namespace - #9
  • coding standards - #10
  • add benchmark to tests (speed of read/write of values and operations)