-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrix2x2.cpp
183 lines (143 loc) · 3.17 KB
/
Matrix2x2.cpp
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include "Matrix2x2.hpp"
#include <cmath>
#include <cassert>
// Compile class to .o: g++ -Wall -O -c class.cpp
// /*
// ===============================================
// */
//6.2.1
//overridden contructor, sets everything to zero
Matrix2x2::Matrix2x2()
{
val00 = 0.0;
val01 = 0.0;
val10 = 0.0;
val11 = 0.0;
}
// /*
// ===============================================
// */
// 6.2.2
//overridden copy constructor
Matrix2x2::Matrix2x2(const Matrix2x2& other)
{
val00 = other.val00;
val01 = other.val01;
val10 = other.val10;
val11 = other.val11;
}
// /*
// ===============================================
// */
// 6.2.3
//constructor, sets elems to a,b,c,d
Matrix2x2::Matrix2x2(double a, double b, double c, double d)
{
val00 = a;
val01 = b;
val10 = c;
val11 = d;
}
// /*
// ===============================================
// */
// 6.2.4
//Method that returns determinant of matrix
double Matrix2x2::CalcDeterminant() const
{
return (val00 * val11 - val01 * val10);
}
// /*
// ===============================================
// */
// 6.2.5
//Method that returns inverse of matrix (if it exists)
Matrix2x2 Matrix2x2::CalcInverse() const
{
double invdet = 1.0;//1.0/(val00 * val11 - val01 * val10);
double temp = val00;
return Matrix2x2((invdet * val11), (invdet * -val01), (invdet * -val10), (invdet * temp));
}
// /*
// ===============================================
// */
// EKSTRA, PRINT FORMATTING
std::ostream& operator<<(std::ostream& output,
const Matrix2x2& z)
{
//format as 2 lines, ab // cd
output << z.val00 << "\t" << z.val01 << "\n" << z.val10 << "\t" << z.val11;
return output;
}
// /*
// ===============================================
// */
//6.2.6
//Overload assignment operator, so we can write A = B
Matrix2x2& Matrix2x2::operator=(const Matrix2x2& z)
{
val00 = z.val00;
val01 = z.val01;
val10 = z.val10;
val11 = z.val11;
return *this;
}
// /*
// ===============================================
// */
// 6.2.7
//Overload unary subtraction
Matrix2x2 Matrix2x2::operator-() const
{
Matrix2x2 w;
w.val00 = -val00;
w.val01 = -val01;
w.val10 = -val10;
w.val11 = -val11;
return w;
}
// /*
// ===============================================
// */
//6.2.8
//Overload binary addition and subtraction
//addition
Matrix2x2 Matrix2x2::operator+(const Matrix2x2& z) const
{
Matrix2x2 w;
w.val00 = val00 + z.val00;
w.val01 = val01 + z.val01;
w.val10 = val10 + z.val10;
w.val11 = val11 + z.val11;
return w;
}
//subtraction
Matrix2x2 Matrix2x2::operator-(const Matrix2x2& z) const
{
Matrix2x2 w;
w.val00 = val00 - z.val00;
w.val01 = val01 - z.val01;
w.val10 = val10 - z.val10;
w.val11 = val11 - z.val11;
return w;
}
// /*
// ===============================================
// */
//6.2.9
//Method for multplying matrix with doubel scalar
void Matrix2x2::MultScalar(double scalar)
{
val00 *= scalar;
val01 *= scalar;
val10 *= scalar;
val11 *= scalar;
}
// /*
// ===============================================
// */
//Non mandatory print function (saw this after my own)
void Matrix2x2::Print() const
{
std::cout << val00 << "\t" << val01 << "\n" << val10 << "\t" << val11 << std::endl;
}