-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
259 lines (223 loc) · 6.01 KB
/
main.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
#include <iostream>
#include "SparseMatrix.h"
void demoConstructors();
void demoGetAndSet();
void demoMatrixAddition();
void demoMatrixNumberAddition();
void demoMatrixSubtraction();
void demoMatrixNumberSubtraction();
void demoMatrixMultiplication();
void demoMatrixNumberMultiplication();
void demoMatrixInversion();
void demoMatrixDivision();
void demoDetFor1x1();
void demoDetFor2x2();
void demoDetFor3x3();
void demoComplementaryMatrix();
void demoAlgebraicComplement();
void demoDiag();
void demoShift();
using namespace std;
int main() {
// demoConstructors();
// demoGetAndSet();
// demoMatrixAddition();
// demoMatrixNumberAddition();
// demoMatrixSubtraction();
// demoMatrixNumberSubtraction();
// demoMatrixMultiplication();
// demoMatrixNumberMultiplication();
// demoMatrixInversion();
// demoMatrixDivision();
// demoDetFor1x1();
// demoDetFor2x2();
// demoDetFor3x3();
// demoComplementaryMatrix();
// demoAlgebraicComplement();
// demoDiag();
// demoShift();
return 0;
}
void demoShift() {
cout << "DEMO SHIFT MATRIX: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 1;
matrix(1, 0) = 2;
matrix(0, 1) = 3;
matrix(1, 1) = 4;
SparseMatrix *resultMatrix = matrix.shift(0, -1);
cout << resultMatrix;
delete resultMatrix;
}
void demoDiag() {
cout << "DEMO DIAGONAL MATRIX: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 1;
matrix(1, 0) = 0;
matrix(2, 0) = 0;
matrix(0, 1) = 5; //switch to 0 in order to make it diagonal
matrix(1, 1) = 2;
matrix(2, 1) = 0;
matrix(0, 2) = 0;
matrix(1, 2) = 0;
matrix(2, 2) = 3;
double result = matrix.diag();
cout << "result= " << result;
}
void demoAlgebraicComplement() {
cout << "DEMO ALGEBRAIC COMPLEMENT: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 2;
matrix(1, 0) = 1;
matrix(2, 0) = 3;
matrix(0, 1) = 4;
matrix(1, 1) = 5;
matrix(2, 1) = 2;
matrix(0, 2) = 0;
matrix(1, 2) = 6;
matrix(2, 2) = 4;
double result = matrix.getAlgebraicComplement(1, 0);
cout << "result= " << result;
}
void demoComplementaryMatrix() {
cout << "DEMO COMPLEMENTARY MATRIX: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 2;
matrix(1, 0) = 1;
matrix(2, 0) = 3;
matrix(0, 1) = 4;
matrix(1, 1) = 5;
matrix(2, 1) = 2;
matrix(0, 2) = 0;
matrix(1, 2) = 6;
matrix(2, 2) = 4;
SparseMatrix *resultMatrix = matrix.getComplementaryMatrix();
cout << resultMatrix;
delete resultMatrix;
}
void demoMatrixDivision() {
cout << "DEMO MATRIX MULTIPLICATION: " << endl;
SparseMatrix matrixOne;
matrixOne(1, 0) = 1.21;
SparseMatrix matrixTwo;
matrixTwo(1, 0) = 2.91;
matrixTwo(1, 1) = 3.1;
SparseMatrix *matrixThree = matrixOne / matrixTwo;
cout << matrixThree;
delete matrixThree;
}
void demoDetFor3x3() {
cout << "DEMO MATRIX DET: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 1;
matrix(1, 0) = 2;
matrix(2, 0) = 3;
matrix(0, 1) = 6;
matrix(1, 1) = 5;
matrix(2, 1) = 4;
matrix(0, 2) = 3;
matrix(1, 2) = 7;
matrix(2, 2) = 2;
double det = matrix.countDet();
cout << "DET = " << det << endl;
}
void demoDetFor1x1() {
cout << "DEMO MATRIX DET: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 12;
double det = matrix.countDet();
cout << "DET = " << det << endl;
}
void demoDetFor2x2() {
cout << "DEMO MATRIX DET: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 3;
matrix(1, 0) = 2;
matrix(0, 1) = 1;
matrix(1, 1) = 0;
double det = matrix.countDet();
cout << "DET = " << det << endl;
}
void demoMatrixInversion() {
cout << "DEMO MATRIX INVERSION: " << endl;
SparseMatrix matrix;
matrix(0, 0) = 3;
matrix(1, 0) = 2;
matrix(0, 1) = 1;
matrix(1, 1) = 0;
SparseMatrix *resultMatrix = !matrix;
cout << resultMatrix;
delete resultMatrix;
}
void demoMatrixNumberMultiplication() {
cout << "DEMO MATRIX NUMBER MULTIPLICATION: " << endl;
SparseMatrix matrix;
matrix(3, 0) = 0.67;
SparseMatrix *resultMatrix = matrix * 60.72;
cout << resultMatrix;
delete resultMatrix;
}
void demoMatrixMultiplication() {
cout << "DEMO MATRIX MULTIPLICATION: " << endl;
SparseMatrix matrixOne;
matrixOne(1, 0) = 1.21;
SparseMatrix matrixTwo;
matrixTwo(1, 0) = 2.91;
matrixTwo(1, 1) = 3.1;
SparseMatrix *matrixThree = matrixOne * matrixTwo;
cout << matrixThree;
delete matrixThree;
}
void demoMatrixNumberSubtraction() {
cout << "DEMO MATRIX NUMBER SUBTRACTION: " << endl;
SparseMatrix matrix;
matrix(3, 0) = 50.67;
SparseMatrix *resultMatrix = matrix - 60.72;
cout << resultMatrix;
delete resultMatrix;
}
void demoMatrixSubtraction() {
cout << "DEMO MATRIX SUBTRACTION: " << endl;
SparseMatrix matrixOne;
matrixOne(1, 0) = 1.21;
SparseMatrix matrixTwo;
matrixTwo(1, 0) = 2.91;
matrixTwo(1, 1) = 3.1;
SparseMatrix *matrixThree = matrixOne - matrixTwo;
cout << matrixThree;
delete matrixThree;
}
void demoMatrixNumberAddition() {
cout << "DEMO MATRIX NUMBER ADDITION: " << endl;
SparseMatrix matrix;
matrix(3, 0) = 50.67;
SparseMatrix *resultMatrix = matrix + 60.72;
cout << resultMatrix;
delete resultMatrix;
}
void demoMatrixAddition() {
cout << "DEMO MATRIX ADDITION: " << endl;
SparseMatrix matrixOne;
matrixOne(1, 0) = 1.21;
SparseMatrix matrixTwo;
matrixTwo(1, 0) = 2.91;
matrixTwo(1, 1) = 3.1;
SparseMatrix *matrixThree = matrixOne + matrixTwo;
cout << matrixThree;
delete matrixThree;
}
void demoGetAndSet() {
cout << "DEMO GET AND SET: " << endl;
SparseMatrix sparseMatrix;
cout << sparseMatrix(50, 10);
sparseMatrix(50, 10) = 1.68;
cout << sparseMatrix(50, 10);
}
void demoConstructors() {
cout << "DEMO CONSTRUCTORS: " << endl;
SparseMatrix sparseMatrix;
cout << sparseMatrix;
sparseMatrix(1, 0) = 4.23;
SparseMatrix copiedSparseMatrix(sparseMatrix);
cout << copiedSparseMatrix;
}