Advertisement
Guest User

matrix.h

a guest
Apr 30th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #pragma once
  2.  
  3. class matrix
  4. {
  5. private:
  6.     float **Matr; int n; int m;
  7.     void oshibka(int er);
  8. public:
  9.     void Mtr(int str, int stl);
  10.     ~matrix();
  11.     void Get(int i, int j, float &res);
  12.     void Put(int i, int j, float &element);
  13.     int get_lines();
  14.     int get_calls();
  15.     void Andrey(int stl1, int stl2);
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement