-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrix.h
411 lines (344 loc) · 10.9 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
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
#ifndef CIPHER_MATRIX_H
#define CIPHER_MATRIX_H
/**
* Struct --> represents an n x m matrix.
*
* @details matrix - M: n x m.
* @details n - number of row.
* @details m - number of column.
*/
typedef struct Matrix {
double **matrix;
int n;
int m;
}matrix;
//******************************************************************************************************************//
//*****************//
// MANAGE MATRIX //
//*****************//
/**
* Creates a matrix - M: n x m.
*
* @param n the number of row.
* @param m the number of column.
* @return the matrix - M: n x m.
*/
matrix *createMatrix(int n, int m);
/**
* Creates an identity matrix - M: n x m.
*
* @param n the matrix order.
* @return the identity matrix - M: n x m.
*/
matrix *createIdentityMatrix(int n);
/**
* Creates a null matrix - M: n x m.
*
* @param n the number of row.
* @param m the number of column.
* @return the null matrix - M: n x m.
*/
matrix *createNullMatrix(int n, int m);
/**
* Initializes a matrix.
*
* @param a the matrix to initialize - M: n x m.
* @param ... the matrix elements.
*/
void initializeMatrix(matrix *a, ...);
/**
* Copies a matrix.
* @warning the dimensions of matrix b must be greater than or equal to those of a
*
* @param a the matrix to be copied - M: n x m.
* @param b the copied matrix - M: p x q.
*/
void copyMatrix(matrix *a, matrix *b);
/**
* Deletes a matrix.
*
* @param a the matrix to be deleted - M: n x m.
*/
void deleteMatrix(matrix *a);
/**
* Prints a matrix.
*
* @details digits integer part: 5
* @details digits decimal part: 5
* @param a the matrix to print - M: n x m.
*/
void printMatrix(matrix *a);
//******************************************************************************************************************//
//***************//
// MATRIX TYPE //
//***************//
/**
* Checks if a matrix is an identity matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is an identity, 0 otherwise.
*/
int isIdentityMatrix(matrix *a);
/**
* Checks if a matrix is a null matrix.
*
* @param a the matrix - M: n x m.
* @return 1 if the matrix is a null matrix, 0 otherwise.
*/
int isNullMatrix(matrix *a);
/**
* Checks if a matrix is diagonal matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is diagonal, 0 otherwise.
*/
int isDiagonalMatrix(matrix *a);
/**
* Checks if a matrix is anti-diagonal matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is anti-diagonal, 0 otherwise.
*/
int isAntidiagonalMatrix(matrix *a);
/**
* Checks if a matrix is an upper diagonal matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is upper diagonal, 0 otherwise.
*/
int isUpperDiagonalMatrix(matrix *a);
/**
* Checks if a matrix is a lower diagonal matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is lower diagonal, 0 otherwise.
*/
int isLowerDiagonalMatrix(matrix *a);
/**
* Checks if a matrix is a symmetric matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is symmetric, 0 otherwise.
*/
int isSymmetricMatrix(matrix *a);
/**
* Checks if a matrix is a antisymmetric matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is antisymmetric, 0 otherwise.
*/
int isAntisymmetricMatrix(matrix *a);
/**
* Checks if a matrix is invertible.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is invertible, 0 otherwise.
*/
int isInvertibleMatrix(matrix *a);
/**
* Checks if a matrix is a row-echelon matrix.
*
* @param a the matrix - M: n x m.
* @return 1 if the matrix is a row-echelon matrix, 0 otherwise.
*/
int isRowEchelonMatrix(matrix *a);
/**
* Checks if a matrix is an Hankel matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is an Hankel matrix, 0 otherwise.
*/
int isHankelMatrix(matrix *a);
/**
* Checks if a matrix is a Toeplitz matrix.
*
* @param a the matrix - M: n x n.
* @return 1 if the matrix is a Toeplitz matrix, 0 otherwise.
*/
int isToeplitzMatrix(matrix *a);
/**
* Matrix transposition.
*
* @param a the matrix - M: n x m.
* @param trans the the transposed matrix: - M: m x n.
*/
void transposingMatrix(matrix *a, matrix *trans);
/**
* Matrix inversion - cofactor matrix method.
* @warning the matrix a must be invertible
*
* @param a the matrix - M: n x n.
* @param inv the inverse of the matrix - M: n x n.
*/
void inverseMatrix(matrix *a, matrix *inv);
/**
* Transform a matrix to a row-echelon matrix - Gaussian elimination method.
*
* @param a the matrix - M: n x m.
* @param step the row-echelon transformed matrix - M: n x m.
*/
void rowEchelonMatrix(matrix *a, matrix *step);
/**
* Absolute value matrix.
*
* @param a the matrix - M: n x m.
* @param abs the absolute value matrix - M: n x m.
*/
void absMatrix(matrix *a, matrix *abs);
//******************************************************************************************************************//
//********************//
// MATRIX OPERATION //
//********************//
/**
* Computes the minor of a matrix.
*
* @param a the matrix - M: n x n.
* @param row the row of the matrix to be deleted.
* @param column the column of the matrix to be deleted.
* @return the minor of the matrix.
*/
double minor(matrix *a, int row, int column);
/**
* Computes the cofactor of a matrix.
*
* @param a the matrix - M: n x n.
* @param row the row of the matrix to be deleted.
* @param column the column of the matrix to be deleted.
* @return the cofactor of the matrix.
*/
double cofactor(matrix *a, int row, int column);
/**
* Computes the determinant of the matrix.
*
* @param a the matrix n x n.
* @return the determinant of the matrix.
*/
double determinantMatrix(matrix *a);
/**
* Computes the rank of a matrix - minor method.
*
* @param a the matrix - M: n x m.
* @return the rank of the matrix.
*/
int rankMatrix(matrix *a);
/**
* Computes the sum of matrices.
*
* @param a the first matrix - M: n x m.
* @param b the second matrix - M: n x m.
* @param res the sum - M: n x m.
*/
void sumMatrix(matrix *a, matrix *b, matrix *res);
/**
* Computes the difference of matrices.
*
* @param a the first matrix - M: n x m.
* @param b the second matrix - M: n x m.
* @param res the difference - M: n x m.
*/
void subMatrix(matrix *a, matrix *b, matrix *res);
/**
* Computes the scalar product of a matrix.
*
* @param scalar the scalar number.
* @param a the matrix - M: n x m.
* @param res the scalar product - M: n x m.
*/
void scalarProductMatrix(double scalar, matrix *a, matrix *res);
/**
* Computes the product of matrices.
*
* @param a the first matrix - M: n x p.
* @param b the second matrix - M: p x m.
* @param res the product - M: n x m.
*/
void productMatrix(matrix *a, matrix *b, matrix *res);
/**
* Computes the power elevation of a matrix.
*
* @param a the matrix - M: n x n.
* @param k the exponent.
* @param res the power elevation - M: n x n.
*/
void powerMatrix(matrix *a, int k, matrix *res);
/**
* Computes the direct sum of matrices.
*
* @param a the first matrix - M: n x m.
* @param b the second matrix - M: p x q.
* @param res the direct sum - M: n+p x m+q.
*/
void directSumMatrix(matrix *a, matrix *b, matrix *res);
/**
* Computes the Kronecker product of matrices.
*
* @param a the first matrix - M: n x m.
* @param b the second matrix - M: p x q.
* @param res the Kronecker product - M: n*p x m*q.
*/
void kroneckerProductMatrix(matrix *a, matrix *b, matrix *res);
//******************************************************************************************************************//
//***************************//
// MATRIX UTILITY FUNCTION //
//***************************//
/**
* Swaps 2 rows of a matrix.
*
* @param a the matrix - M: n x m.
* @param row1 the first row to be swapped.
* @param row2 the second row to be swapped.
* @param swap the swapped matrix - M: n x m.
*/
void swapRowMatrix(matrix *a, int row1, int row2, matrix *swap);
/**
* Swaps 2 columns of a matrix.
*
* @param a the matrix - M: n x m.
* @param col1 the first column to be swapped.
* @param col2 the second column to be swapped.
* @param swap the swapped matrix - M: n x m.
*/
void swapColumnMatrix(matrix *a, int col1, int col2, matrix *swap);
/**
* Finds the maximum value in a matrix.
*
* @param a the matrix - M: n x m.
* @param rowPos the row containing the position with the maximum value.
* @param colPos the column containing the position with the maximum value.
* @return the maximum value in the matrix.
*/
double findMaxMatrix(matrix *a, int *rowPos, int *colPos);
/**
* Finds the minimum value in a matrix.
*
* @param a the matrix - M: n x m.
* @param rowPos the row containing the position with the minimum value.
* @param colPos the column containing the position with the minimum value.
* @return the minimum value in the matrix.
*/
double findMinMatrix(matrix *a, int *rowPos, int *colPos);
/**
* Finds the elements on the diagonal of a matrix.
*
* @param a the matrix - M: n x m.
* @param numberOfElements the number of elements on the diagonal.
* @return the list of elements on the diagonal of the matrix.
*/
double *diagonalMatrix(matrix *a, int *numberOfElements);
/**
* Finds the pivots in a matrix.
*
* @param a the matrix - M: n x m.
* @param pivotsNumber the number of pivots.
* @return the list of pivots.
*/
double *pivot(matrix *a, int *pivotsNumber);
/**
* Decomposition of a matrix using Lower-Upper Decomposition - [A]=[L]*[U].
*
* @param a the matrix - M: n x n.
* @param l the lower triangular matrix - M: n x n.
* @param u the upper triangular matrix - M: n x n.
*/
void luDecomposition(matrix *a, matrix *l, matrix *u);
#endif