-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMatrix.h
63 lines (49 loc) · 1.27 KB
/
Matrix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef Matrix_h
#define Matrix_h
#include <iostream>
template <typename T>
class Matrix {
T** p;
int rows;
int cols;
void allocateMemories();
public:
Matrix<T>(int, int);
Matrix<T>(const Matrix<T>&);
Matrix<T>(const std::vector<std::vector<T>>&);
Matrix<T> get11() const;
Matrix<T> get12() const;
Matrix<T> get21() const;
Matrix<T> get22() const;
int getRows() const {
return rows;
}
int getCols() const {
return cols;
}
T** getP() const {
return p;
}
inline T& operator()(int x, int y) {
return p[x][y];
}
template <class U>
friend Matrix<U> operator+(const Matrix<U>& lhs, const Matrix<U>& rhs);
template <class U>
friend Matrix<U> operator-(const Matrix<U>& lhs, const Matrix<U>& rhs);
template <class U>
friend Matrix<U> operator*(const Matrix<U>& lhs, const Matrix<U>& rhs);
template <class U>
friend Matrix<U> combine(const Matrix<U>& m11, const Matrix<U>& m12,
const Matrix<U>& m21, const Matrix<U>& m22);
friend std::ostream& operator<<(std::ostream& os, const Matrix<T>& matrix) {
for (int i = 0; i < matrix.rows; i++) {
for (int j = 0; j < matrix.cols; j++) {
os << matrix.p[i][j] << " ";
}
os << std::endl;
}
return os;
}
};
#endif