-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmatrix22.h
37 lines (32 loc) · 1.03 KB
/
matrix22.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
template<typename value_type>
class Matrix22 // 2 x 2 version
{
public:
Matrix22(value_type a11 = value_type(), value_type a12 = value_type(),
value_type a21 = value_type(), value_type a22 = value_type()) :
a11(a11), a12(a12), a21(a21), a22(a22)
{}
static Matrix22 identity() // a.k.a. unit
{ return Matrix22(1, 0, 0, 1); }
Matrix22 operator *(const Matrix22 &m) const
{
return Matrix22(this->a11 * m.a11 + this->a12 * m.a21,
this->a11 * m.a12 + this->a12 * m.a22,
this->a21 * m.a11 + this->a22 * m.a21,
this->a21 * m.a12 + this->a22 * m.a22);
}
Matrix22 operator *=(const Matrix22 &m)
{ return *this = *this * m; }
Matrix22 pow(unsigned long long b) const
{
Matrix22 p = Matrix22::identity();
for (Matrix22 a = *this; b; a *= a, b >>= 1)
if (b & 1ll)
p *= a;
return p;
}
value_type a11;
value_type a12;
value_type a21;
value_type a22;
};