-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrice.java
428 lines (343 loc) · 11.6 KB
/
Matrice.java
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/**
* @author Simon Blanchette
*
*/
class Matrice {
private double[][] matrice;
public static final int
TRIANGULAIRE_NIMPORTE = 0,
TRIANGULAIRE_INFERIEUR = 1,
TRIANGULAIRE_SUPERIEUR = 2;
public Matrice(double[][] matrice) {
this.matrice = matrice;
}
public double getElement(int ligne, int colonne) {
return this.matrice[ligne][colonne];
}
public void setElement(int ligne, int colonne, double element) {
this.matrice[ligne][colonne] = element;
}
public int getLignes() {
return matrice.length;
}
public int getColonnes() {
return matrice[0].length;
}
public Matrice additionner(Matrice matrice) {
double[][] elements = new double[getLignes()][getColonnes()];
if (memeFormat(matrice))
for (int ligne = 0;ligne < getLignes();ligne++)
for (int colonne = 0; colonne < getColonnes();colonne++)
elements[ligne][colonne] = getElement(ligne, colonne) + matrice.getElement(ligne, colonne);
else
System.out.println("Addition impossible, les matrices sont de format diff�rent\n");
return new Matrice(elements);
}
public Matrice faireProduitScalaire(double scalaire) {
double[][] elements = new double[getLignes()][getColonnes()];
for (int ligne = 0;ligne < getLignes();ligne++)
for (int colonne = 0; colonne < getColonnes();colonne++)
elements[ligne][colonne] = getElement(ligne, colonne) * scalaire;
return new Matrice(elements);
}
public Matrice faireProduitMatriciel(Matrice matrice) {
double[][] elements = new double[getLignes()][matrice.getColonnes()];
/* V�rifier si le nombre de colonne de la matrice actuelle
* est �gal au nombre de ligne de la matrice � multiplier */
if (memeLigneColonne(matrice))
// On parcours chaques lignes de la matrice actuelle
for (int ligne = 0; ligne < getLignes(); ligne++)
// On parcours chaque colonne de la matrice � multiplier
for (int colonneB = 0; colonneB < matrice.getColonnes(); colonneB++)
// On parcours chaque colonne de la matrice actuelle
for (int colonneA = 0; colonneA < getColonnes(); colonneA++)
elements[ligne][colonneB] += getElement(ligne,colonneA) * matrice.getElement(colonneA, colonneB);
else
System.out.println("Produit impossible!, Le nombre de ligne de la matrice A doit " +
"�tre �gale au nombre de colonnne de la matrice B");
return new Matrice(elements);
}
public double getTrace() {
// Si la matrice n'est pas carr�, on retourne 0
if (!estCarre()) {
System.out.println("Trace impossible, la matrice doit �tre carr�!");
return 0;
}
double trace = 0;
for (int ligne=0; ligne < getLignes(); ligne++)
for (int colonne=0; colonne < getColonnes(); colonne++)
if (ligne==colonne)
// On additionne la diagonale
trace += getElement(ligne,colonne);
return trace;
}
public double getDeterminant()
{
// Si la matrice n'est pas carr�, on retourne 0
if (!estCarre()) {
System.out.println("D�terminant impossible, la matrice doit �tre carr�!");
return 0;
}
int nbLignes = getLignes();
double determinant = 0;
switch (nbLignes)
{
case 1: determinant = getElement(0,0); break;
default: determinant = getDetOrdreN(); break;
}
return determinant;
}
public Matrice getTransposee() {
Matrice mat = new Matrice(new double[getLignes()][getColonnes()]);
// Si la matrice n'est pas carr�, on retourne une matrice vide
if (!estCarre()) {
System.out.println("Transpos�e impossible, " +
"la matrice n'est pas carr�e!\n");
return mat;
}
for (int ligne = 0; ligne < getLignes(); ligne++)
for (int colonne = 0; colonne < getColonnes(); colonne++)
mat.setElement(colonne, ligne, getElement(ligne,colonne));
return mat;
}
public Matrice getCoMatrice() {
Matrice mat = new Matrice(new double[getLignes()][getColonnes()]);
double determinant = 0;
int posNeg = 0;
if (!estCarre()) {
System.out.println("Comatrice impossible, la matrice doit �tre carre.");
return mat;
}
if (getLignes() == 2) {
mat.setElement(0, 0, getElement(1, 1));
mat.setElement(0, 1, -1*getElement(1, 0));
mat.setElement(1, 0, -1*getElement(0, 1));
mat.setElement(1, 1, getElement(0, 0));
return mat;
}
for (int ligne = 0; ligne < getLignes(); ligne++)
for (int colonne = 0; colonne < getColonnes(); colonne++){
determinant = getComplementAlgebrique(ligne, colonne);
posNeg = getPosNeg(ligne, colonne);
mat.setElement(ligne, colonne, determinant * posNeg);
}
return mat;
}
public Matrice getMatriceInverse() {
Matrice mat = new Matrice(new double[getLignes()][getColonnes()]);
// Si la matrice n'est pas carr�, on retourne une matrice vide
if (!estCarre()) {
System.out.println("Matrice inverse impossible, car la matrice n'est pas carr�e!");
return mat;
}
// Si la matrice n'est pas r�guli�re, on retourne une matrice vide
if (!estReguliere()) {
System.out.println("Matrice inverse impossible, car la matrice n'est pas r�guliere" +
" le d�terminant soit �tre diff�rent de 0!");
return mat;
}
double valeur = 0;
// Si la matrice est triangulaire
if (estTriangulaire(TRIANGULAIRE_SUPERIEUR, false) &&
estTriangulaire(TRIANGULAIRE_INFERIEUR, false)) {
for (int ligne = 0; ligne < getLignes(); ligne++)
for (int colonne = 0; colonne < getColonnes(); colonne++)
if (ligne==colonne) {
valeur = 1/getElement(ligne, colonne);
mat.setElement(ligne, colonne, valeur);
}
}
else { // Autres cas
double det = getDeterminant();
mat = getCoMatrice();
mat = mat.getTransposee();
for (int ligne = 0; ligne < mat.getLignes(); ligne++)
for (int colonne = 0; colonne < mat.getColonnes(); colonne++) {
valeur = mat.getElement(ligne, colonne)/det;
mat.setElement(ligne, colonne, valeur);
}
}
return mat;
}
public boolean estCarre() {
return (getLignes() == getColonnes());
}
public boolean estTriangulaire(int _type, boolean _verifierStricte)
{
boolean type = false;
boolean stricte = true;
switch (_type) {
case TRIANGULAIRE_NIMPORTE: type = verifierTriangulaire(); break;
case TRIANGULAIRE_INFERIEUR: type = verifierTriangulaireInferieur(); break;
case TRIANGULAIRE_SUPERIEUR: type = verifierTriangulaireSuperieur();break;
}
stricte = _verifierStricte ? verifierTriangulaireStricte() : true;
return (type && stricte);
}
public boolean estReguliere() {
return (getDeterminant() != 0);
}
public void afficherMatrice() {
String output = "";
for (int ligne=0; ligne < getLignes(); ligne++) {
output += "| ";
for (int colonne=0; colonne < getColonnes(); colonne++) {
output += this.matrice[ligne][colonne];
output += " ";
}
output += "|"+"\n";
}
System.out.println(output);
}
private boolean memeFormat(Matrice matrice) {
return (this.getLignes() == matrice.getLignes() &&
this.getColonnes() == matrice.getColonnes());
}
private boolean memeLigneColonne(Matrice matrice) {
return (this.getColonnes() == matrice.getLignes());
}
private double getDetOrdre2() {
return getElement(0,0)*getElement(1,1)
- getElement(1,0)*getElement(0,1);
}
private double getDetOrdreN() {
if (getLignes() == 2 && getColonnes() == 2)
return getDetOrdre2();
double determinant = 0, detLigne = 0;
for (int colonne=0; colonne < getColonnes(); colonne++) {
detLigne = getPosNeg(0, colonne)*getElement(0, colonne) * getComplementAlgebrique(0, colonne);
determinant += detLigne;
}
return determinant;
}
private double getComplementAlgebrique(int ln, int col) {
int posNewLigne = 0;
int posNewColonne = 0;
boolean isNewLine = false;
Matrice newMat = new Matrice(new double[getLignes() -1][getColonnes() -1]);
for (int ligne=0; ligne < getLignes(); ligne++) {
isNewLine = false;
for (int colonne=0; colonne < getColonnes(); colonne++) {
if (ligne != ln && colonne != col) {
newMat.setElement(posNewLigne, posNewColonne++, getElement(ligne, colonne));
isNewLine = true;
}
}
posNewColonne = 0;
if (isNewLine)
posNewLigne++;
}
return newMat.getDetOrdreN();
}
// Fonction qui retourne -1/+1 si impair ou pair de ligne+colonne
private int getPosNeg(int _ligne, int _colonne) {
return (int)Math.pow(-1,_ligne+_colonne);
}
// Triangulaire sup�rieur ou inf�rieur
private boolean verifierTriangulaire() {
return (verifierTriangulaireSuperieur() || verifierTriangulaireInferieur());
}
// Valeurs AU-DESSUS la diagonale NULLES
private boolean verifierTriangulaireSuperieur() {
int ctrLnColZero = 0; // Compteur du nombre de fois que i > j
int ctrValeurZero = 0; // Compteur du nombre de fois que c[i,j] = 0
for (int ligne = 0; ligne < getLignes(); ligne++)
for (int colonne = 0; colonne < getColonnes(); colonne++)
if (ligne > colonne) {
ctrLnColZero++;
if (getElement(ligne, colonne) == 0)
ctrValeurZero++;
}
return (ctrLnColZero == ctrValeurZero);
}
// Valeurs SOUS la diagonale NULLES
private boolean verifierTriangulaireInferieur() {
int ctrLnColZero = 0; // Compteur du nombre de fois que i > j
int ctrValeurZero = 0; // Compteur du nombre de fois que c[i,j] = 0
for (int ligne = 0; ligne < getLignes(); ligne++)
for (int colonne = 0; colonne < getColonnes(); colonne++)
if (ligne < colonne) {
ctrLnColZero++;
if (getElement(ligne, colonne) == 0)
ctrValeurZero++;
}
return (ctrLnColZero == ctrValeurZero);
}
private boolean verifierTriangulaireStricte() {
int ctrLnColZero = 0; // Compteur du nombre de fois que i == j
int ctrValeurZero = 0; // Compteur du nombre de fois que c[i,j] = 0
for (int ligne = 0; ligne < getLignes(); ligne++)
for (int colonne = 0; colonne < getColonnes(); colonne++)
if (ligne == colonne) {
ctrLnColZero++;
if (getElement(ligne, colonne) == 0)
ctrValeurZero++;
}
return (ctrLnColZero == ctrValeurZero);
}
public boolean verifierDominanceDiagonaleStricte()
{
double diagonale = 0;
double reste = 0;
for (int ligne = 0; ligne < getLignes(); ligne++) {
for (int colonne = 0; colonne < getColonnes(); colonne++) {
if (ligne == colonne) {
diagonale += getElement(ligne, colonne);
}
else {
reste += getElement(ligne, colonne);
}
}
}
return (diagonale > reste);
}
public Matrice getDiagonale()
{
Matrice mat = new Matrice(new double[getLignes()][getColonnes()]);
for (int ligne = 0; ligne < getLignes(); ligne++) {
for (int colonne = 0; colonne < getColonnes(); colonne++) {
if (ligne == colonne) {
mat.setElement(ligne, colonne, this.getElement(ligne, colonne));
}
else {
mat.setElement(ligne, colonne, 0);
}
}
}
return mat;
}
public Matrice getTriangulaireInferieure()
{
Matrice mat = new Matrice(new double[getLignes()][getColonnes()]);
for (int ligne = 0; ligne < getLignes(); ligne++) {
for (int colonne = 0; colonne < getColonnes(); colonne++) {
if (ligne > colonne) {
mat.setElement(ligne, colonne, this.getElement(ligne, colonne));
}
else {
mat.setElement(ligne, colonne, 0);
}
}
}
return mat;
}
public Matrice getTriangulaireSuperieure()
{
Matrice mat = new Matrice(new double[getLignes()][getColonnes()]);
for (int ligne = 0; ligne < getLignes(); ligne++) {
for (int colonne = 0; colonne < getColonnes(); colonne++) {
if (ligne < colonne) {
mat.setElement(ligne, colonne, this.getElement(ligne, colonne));
}
else {
mat.setElement(ligne, colonne, 0);
}
}
}
return mat;
}
public Matrice copy()
{
return new Matrice(matrice);
}
}