-
Notifications
You must be signed in to change notification settings - Fork 0
/
Matrix.cpp
358 lines (290 loc) · 9.49 KB
/
Matrix.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
/* -----------------------------------------------------------------------------
FILE NAME: Matrix.cpp
DESCRIPTION: This is the implementation file for the Matrix class
USAGE: This program is linkked to the driver via a .o file
COMPILER: g++ compiler c++11 standard
NOTES: both Matrix and Matrix_ops specifications are included here Matrix_ops is at the bottom
MODIFICATION HISTORY:
Author Date Modification(s)
---------------- ----------- ---------------
Peter Kilonzo 2018-05-15 Version 1
---------------------------------------------------------------------------- */
#include "Matrix.h"
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix()
PURPOSE: default constructor
RETURNS: Nothing
NOTES: This is the default constructor that sets al the private members to 0
----------------------------------------------------------------------------- */
template <class T>
Matrix<T>::Matrix()
{
rows = 0;
cols = 0;
array = NULL;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix(int n_rows, int n_cols)
PURPOSE: overloaded constructor
RETURNS: Nothing
NOTES: This is the overloaded constructor that sets the values of the matrix to any parameters passed to it.
----------------------------------------------------------------------------- */
template <class T>
Matrix<T>::Matrix(int n_rows, int n_cols)
{
rows = n_rows;
cols = n_cols;
array = new T*[rows];
for (int i = 0; i < rows; ++i) {
array[i] = new T[cols];
for (int j = 0; j < cols; ++j) {
array[i][j] = 0;
}
}
// cout << "Matrix Constructor: ";
// cout << rows << " X " << cols << endl;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix(const Matrix<T> &)
PURPOSE: Copy constructor
RETURNS: Nothing
NOTES: This is the copy constructor that sets the values of the matrix to the values of the matrix passed to it passed to it.
----------------------------------------------------------------------------- */
template <class T>
Matrix<T>::Matrix(const Matrix<T> & ml)
{
rows = ml.rows;
cols = ml.cols;
array = new T * [rows];
for (int i = 0; i < rows; i++)
{
array[i] = new T [cols];
for (int j = 0; j < cols; j++)
{
array[i][j] = ml.array[i][j];
}
// cout << endl;
}
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: ~Matrix();
PURPOSE: This is the destructor for the Matrix which deallocated all the memory for the object.
RETURNS: Nothing
NOTES: usages is *matrix*.~Matrix()
----------------------------------------------------------------------------- */
template <class T>
Matrix<T>::~Matrix()
{
for (int i = 0; i < rows; i++)
{
delete [] array[i];
}
delete []array;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: ostream& operator << (ostream &strm, const Matrix<R> &))
PURPOSE: this is the outstream operator overloading to make displaying of the matrix easy and readable
RETURNS: strm
NOTES: usage for oustream is now 'cout << *matrix*'
----------------------------------------------------------------------------- */
template <class R>
ostream& operator << (ostream &strm, const Matrix<R> &m)
{
strm << setw(4) << m.rows << " X " << m.cols << endl;
for (int i = 0; i < m.rows; i++)
{
for (int j = 0; j < m.cols; j++)
{
strm << setw(4) << m.array[i][j];
}
strm << endl;
}
strm << endl;
return strm;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: istream& operator >> (istream &istrm, Matrix<R> &))
PURPOSE: this is the instream operator overloading to make input of a matrix easier.
RETURNS: istrm
NOTES: usage for instream is now 'cin >>'
----------------------------------------------------------------------------- */
template <class T>
istream &operator >> (istream & istrm, Matrix<T> &ai)
{
char let_x;
int m, n;
istrm >> m >> let_x >> n;
Matrix<T> nlp(m, n);
for (int i = 0; i < m; i++)
{
for (int j = 0; j < n; j ++)
{
istrm >> nlp.array[i][j];
}
}
ai = nlp;
return istrm;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix<T> operator = (const Matrix<T> &)
PURPOSE: This fuction sets a matrix equal to another, similar to a copy constructor
RETURNS:
NOTES: Add two Matrices with '+'
----------------------------------------------------------------------------- */
template <class T>
Matrix<T>& Matrix<T>::operator = (const Matrix<T> &cv)
{
for (int i = 0; i < rows; i++)
{
delete [] array[i];
}
delete [] array; //memory for former matrix must be deallocated
rows = cv.rows;
cols = cv.cols;
array = new T *[rows]; //rellocated correct amount of memory
for (int i = 0; i < rows; i++)
{
array[i] = new T [cols];
for (int j = 0; j < cols; j++)
{
array[i][j] = cv.array[i][j];
}
// cout << endl;
}
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix_ops<T> operator + (const Matrix_ops<T> &)
PURPOSE: This functions adds two matrices with the same dimensions together
RETURNS:
NOTES: Add two Matrices with '+'
----------------------------------------------------------------------------- */
template <class T>
Matrix_ops<T> Matrix_ops<T>::operator + (const Matrix_ops<T> &da) {
Matrix_ops<T> m1;
if(rows != da.rows || cols != da.cols) {
cout << "These matrix do not share dimensions therefore additions is impossible\n";
//return 0;
}else {
m1.rows = rows;
m1.cols = cols;
m1.array = new T *[rows];
for (int i = 0; i < m1.rows; i++)
{
m1.array[i] = new T [cols];
for (int j = 0; j < m1.cols; j++)
{
m1.array[i][j] = array[i][j] + da.array[i][j];
}
// cout << endl;
}
return m1;
}
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix_ops<T> operator - (const Matrix_ops<T> &)
PURPOSE: This functions subtracts two Matrcies from each other
RETURNS:
NOTES: Subtract two Matrices with '-'
----------------------------------------------------------------------------- */
template <class T>
Matrix_ops<T> Matrix_ops<T>::operator - (const Matrix_ops<T> &nacho) {
Matrix_ops<T> m2;
if(rows != nacho.rows || cols != nacho.cols) {
cout << "These matrix do not share dimensions therefore subtraction is impossible\n";
//return 0;
}else {
m2.rows = rows;
m2.cols = cols;
m2.array = new T *[rows];
for (int i = 0; i < m2.rows; i++)
{
m2.array[i] = new T [cols];
for (int j = 0; j < m2.cols; j++)
{
m2.array[i][j] = array[i][j] - nacho.array[i][j];
}
// cout << endl;
}
return m2;
}
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix_ops<T> operator * (const Matrix_ops<T> &)
PURPOSE: This functions subtracts two Matrcies from each other
RETURNS:
NOTES: Subtract two Matrices with '-'
----------------------------------------------------------------------------- */
template <class T>
Matrix_ops<T> Matrix_ops<T>::operator * (const Matrix_ops<T> &fdt) {
Matrix_ops<T> m3;
int weird = 0;
if(cols != fdt.rows) {
cout << "These matrix do not share dimensions therefore multiplication is impossible\n";
//return 0;
}else {
m3.rows = rows;
m3.cols = fdt.rows;
m3.array = new T*[rows];
for(int i = 0; i < rows; ++i)
{
m3.array[i] = new T [fdt.cols];
for(int j = 0; j < fdt.cols; j++)
{
m3.array[i][j] = 0;
for(int k = 0; k < cols; ++k)
{
m3.array[i][j] += array[i][k] * fdt.array[k][j];
weird++;
}
}
}
}
cout << weird << "\n";
return m3;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: bool operator == (const Matrix_ops<T> &) const
PURPOSE: This functions adds two matrices with the same dimensions together
RETURNS:
NOTES: Compare two Matrices with '=='
----------------------------------------------------------------------------- */
template <class T>
bool Matrix_ops<T>::operator == (const Matrix_ops<T> &da) const{
bool tru;
if(rows != da.rows || cols != da.cols) {
cout << "These matrix do not share dimensions\n";
return false;
}
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < cols; j++)
{
if (array[i][j] != da.array[i][j]) return false;
}
// cout << endl;
}
return true;
}
/* -----------------------------------------------------------------------------
FUNCTION NAME: Matrix_ops<T> transpose()
PURPOSE: This functions is supposed to transpose a matrix
RETURNS:
NOTES: The usage is *matrix*.transpose() i.e. Matrix1 = Matrix1.transpose
----------------------------------------------------------------------------- */
template <class T>
Matrix_ops<T> Matrix_ops<T>::transpose() {
Matrix_ops<T> trans;
trans.rows = cols;
trans.cols = rows;
trans.array = new T*[cols];
for (int i = 0; i < cols; i++)
{
trans.array[i] = new T[rows];
for (int j = 0; j < rows; j++)
{
trans.array[i][j] = array[j][i];
}
// cout << endl;
}
return trans;
}