-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.py
135 lines (114 loc) · 4.16 KB
/
matrix.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
import random
class Matrix:
roundTo = 12
def __init__(self, rows, cols):
self.rows = rows
self.cols = cols
self.data = [[0] * cols for i in range(rows)]
def __getitem__(self, keys):
i, j = keys
return self.data[i][j]
def __setitem__(self, keys, value):
i, j = keys
self.data[i][j] = value
def map(self, fnc):
for i in range(self.rows):
for j in range(self.cols):
self[i, j] = fnc(self[i, j])
return self
def __pow__(self, power, modulo=None):
result = Matrix(self.rows, self.cols)
for i in range(0, self.rows):
for j in range(0, self.cols):
result[i, j] = self[i, j]**2
return result
@staticmethod
def transpose(matrix):
result = Matrix(matrix.cols, matrix.rows)
for i in range(matrix.rows):
for j in range(matrix.cols):
result[j, i] = matrix[i, j]
return result
@staticmethod
def from_array(arr):
length = len(arr)
result = Matrix(length, 1)
for i in range(0, length):
result[i, 0] = arr[i]
return result
@staticmethod
def elmult(m1, m2):
if m1.rows != m2.rows or m1.cols != m2.cols :
print("cols or rows don't match")
return
result = Matrix(m1.rows, m1.cols)
for i in range(m1.rows):
for j in range(m2.cols):
result[i, j] = m1[i, j] * m2[i, j]
return result
def randomize(self, start: int, end: int):
for i in range(self.rows):
for j in range(self.cols):
randNum = random.uniform(start, end)
self[i, j] = round(randNum, self.roundTo)
return self
def __str__(self):
result = ""
for i in range(0, self.rows):
row = ""
for j in range(0, self.cols):
row += (str(self[i, j]) + " ")
result += row.center(20)
result += "\n"
return result
def __add__(self, number):
result = Matrix(self.rows, self.cols)
if isinstance(number, Matrix):
if self.rows != number.rows or self.cols != number.cols:
print("Rows or Cols don't match in matrices")
return
for i in range(self.rows):
for j in range(self.cols):
result[i, j] = self[i, j] + number[i, j]
elif isinstance(number, int):
for i in range(self.rows):
for j in range(self.cols):
result[i, j] = self[i, j] + number
else:
result = None
return result
def __sub__(self, number):
result = Matrix(self.rows, self.cols)
if isinstance(number, Matrix):
if self.rows != number.rows or self.cols != number.cols:
print("Rows or Cols don't match in matrices")
return
for i in range(self.rows):
for j in range(self.cols):
result[i, j] = self[i, j] - number[i, j]
elif isinstance(number, int):
for i in range(self.rows):
for j in range(self.cols):
result[i, j] = self[i, j] - number
else:
result = None
return result
def __mul__(self, number):
if isinstance(number, float):
result = Matrix(self.rows, self.cols)
for i in range(self.rows):
for j in range(self.cols):
result[i, j] = self[i, j] * number
return result
elif isinstance(number, Matrix):
if self.cols != number.rows:
print("Number of cols in first matrix do not match the number of rows in second")
else:
result = Matrix(self.rows, number.cols)
for i in range(self.rows):
for j in range(number.cols):
sum = 0
for k in range(self.cols):
sum += self[i, k] * number[k, j]
result[i, j] = round(sum, self.roundTo)
return result