Skip to content

Instantly share code, notes, and snippets.

View vovapi's full-sized avatar

Vladimir Evgrafov vovapi

  • ViasatTech
  • Moscow
  • 02:13 (UTC +03:00)
View GitHub Profile
#include <iostream>
2 #include <cmath>
3 #include <vector>
4
5 template
6 <typename Elements, int size>
7 class Matrix {
8 private:
9 std::vector<std::vector<Elements> > matrix;
10 public: