-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrice.py
199 lines (186 loc) · 6.92 KB
/
Matrice.py
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
import numbers
import itertools
import copy
#ciao Pietro sto provando git su ubuntu
from fractions import Fraction
class Matrice:
def __init__(this,matrice):
this.matrice = []
this.altezza = 0
this.larghezza = 0
this.setMatrice(matrice)
def setMatrice(this, matrice):
this.altezza = len(matrice)
this.larghezza = len(matrice[0])
for i in matrice:
if len(i) != this.larghezza:
this.altezza = 0
this.larghezza = 0
raise Exception("numero colonne eterogeneo")
this.matrice = matrice
def __add__(this, matrice):
#se l'argomento è 0 (capita calcolando il determinante di una matrice di matrici)
#allora:
if matrice == 0:
return this
if this.larghezza != matrice.larghezza or this.altezza != matrice.altezza:
raise Exception("ops le matrici non sono compatibili: \n"+ str(this) + str(matrice))
retMat = []
for i in range(0, this.altezza):
tmp = []
for j in range(0, this.larghezza):
tmp.append(this.matrice[i][j] + matrice.matrice[i][j])
retMat.append(tmp)
return Matrice(retMat)
#addizione a destra
def __radd__(this,altroOggetto):
return this.__add__(altroOggetto)
def __mul__(this, matrice):
retMat = []
if not isinstance(matrice, (numbers.Number, Matrice)):
raise Exception("Puoi moltiplicare per un numero o per una matrice.")
#se l'argomento è un numero
#eseguo cella a cella la moltiplicazione.
if isinstance(matrice, numbers.Number):
for i in range(0, this.altezza):
tmp = []
for j in range(0, this.larghezza):
tmp.append(this.matrice[i][j]*matrice)
retMat.append(tmp)
else:
if this.larghezza != matrice.altezza:
raise Exception("ops le matrici non sono compatibili")
for i in range(0, this.altezza):
tmp = []
for j in range(0, matrice.larghezza):
temp = 0
for k in range(0, this.larghezza):
temp = temp + this.matrice[i][k]*matrice.matrice[k][j]
tmp.append(temp)
retMat.append(tmp)
return Matrice(retMat)
#moltiplicazione a destra
def __rmul__(this, altroOggetto):
return this.__mul__(altroOggetto)
def __str__(this):
tmp = ""
for i in range(0, this.altezza):
for j in range(0, this.larghezza):
tmp = tmp + str(this.matrice[i][j]) + "\t"
tmp = tmp + "\n"
return tmp
def __repr__(this):
return this.__str__()
def complementa(this, riga, colonna):
#ritorna un minore della matrice, con la riga e la colonna
#specificate cancellate.
ret = []
for i in range(0, this.larghezza):
if i != riga:
temp = []
for j in range(0, this.altezza):
if j != colonna:
temp.append(this.matrice[i][j])
ret.append(temp)
return Matrice(ret).clona()
@property
def determinante(this):
#secondo Laplace
if this.altezza != this.larghezza:
raise Exception("ops, la matrice non è quadrata")
if this.altezza == 1:
return float(this.matrice[0][0])
else:
det = 0
for i in range(0, this.larghezza):
#attenzione: sarebbe -1^(i+1+j+1), ma j=0, quindi -1^(i+1+1) = -1^(i) e basta
det = det + pow(-1, i) * this.matrice[0][i] * this.complementa(0,i).determinante
return det
@property
def trasposta(this):
#le righe diventano colonne.
ret = []
for j in range(0,this.larghezza):
tmp = []
for i in range(0, this.altezza):
tmp.append(this.matrice[i][j])
ret.append(tmp)
return Matrice(ret).clona()
def __getitem__(this, k):
return this.matrice.__getitem__(k)
def __setitem__(this,k,j):
this.matrice.__setitem__(k,j)
@property
def rango_minori(this): #rango orribilmente lento(ricorsivo con i minori)
rango = 0
if this.altezza == this.larghezza:
if this.determinante != 0:
return this.altezza
if this.determinante == 0 and this.altezza == 1:
return 0
else:
for i in range(0,this.altezza):
for j in range(0,this.altezza):
tmp = this.complementa(i, j).rango_minori
if tmp > rango:
rango = tmp
else:
if this.altezza < this.larghezza:
return this.trasposta.rango_minori
else:
for i in itertools.combinations(this.matrice, this.larghezza):
tmp = Matrice(i).rango_minori
if tmp > rango:
rango = tmp
return rango
@property
def rango_gauss(this):
tmp = this.clona()
tmp.riduciAScala()
intRango = tmp.larghezza if tmp.larghezza < tmp.altezza else tmp.altezza
#creo vettore nullo
nullo = [0 for x in range(0,tmp.larghezza)]
#conto linee linearmente indipendenti
for riga in tmp.matrice:
if riga == nullo:
intRango -= 1;
return intRango
def riduciAScala(this, indice = 0):
if this.altezza > this.larghezza:
this.setMatrice(this.trasposta.matrice)
if this.altezza > indice:
if this[indice][indice] == 0:
trovato = False
for i in range(indice + 1,this.altezza):
if this[i][indice] != 0:
this[i], this[indice] = this[indice],this[i]
trovato = True
break
if not(trovato):
this.riduciAScala(indice + 1)
return
for i in range(indice + 1,this.altezza):
azzeratore = Fraction(-this[i][indice],this[indice][indice])
for j in range(indice, this.larghezza):
this[i][j] = this[i][j]+azzeratore*this[indice][j]
this.riduciAScala(indice + 1)
def clona(this):
return Matrice(copy.deepcopy(this.matrice))
m1 = Matrice([[1,2],[3,4]])
i = Matrice([[1,0,0]])
j = Matrice([[0,1,0]])
k = Matrice([[0,0,1]])
m2 = Matrice([
[i, j, k],
[1,3,2],
[3,4,4]
])
m3 = Matrice([[3,2,3],
[2,3,4],
[5,5,7]
])
m3.riduciAScala()
print(m3)
print(m3.rango_minori)
#print(m2.trasposta.determinante)
#m = m1 + m2