-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathLinearAlgebraPurePython.py
More file actions
357 lines (276 loc) · 9.59 KB
/
LinearAlgebraPurePython.py
File metadata and controls
357 lines (276 loc) · 9.59 KB
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
# Linear Regression - Library Free, i.e. no numpy or scipy
def zeros_matrix(rows, cols):
"""
Creates a matrix filled with zeros.
:param rows: the number of rows the matrix should have
:param cols: the number of columns the matrix should have
:return: list of lists that form the matrix
"""
M = []
while len(M) < rows:
M.append([])
while len(M[-1]) < cols:
M[-1].append(0.0)
return M
def identity_matrix(n):
"""
Creates and returns an identity matrix.
:param n: the square size of the matrix
:return: a square identity matrix
"""
IdM = zeros_matrix(n, n)
for i in range(n):
IdM[i][i] = 1.0
return IdM
def copy_matrix(M):
"""
Creates and returns a copy of a matrix.
:param M: The matrix to be copied
:return: A copy of the given matrix
"""
# Section 1: Get matrix dimensions
rows = len(M)
cols = len(M[0])
# Section 2: Create a new matrix of zeros
MC = zeros_matrix(rows, cols)
# Section 3: Copy values of M into the copy
for i in range(rows):
for j in range(cols):
MC[i][j] = M[i][j]
return MC
def print_matrix(M, decimals=3):
"""
Print a matrix one row at a time
:param M: The matrix to be printed
"""
for row in M:
print([round(x, decimals)+0 for x in row])
def transpose(M):
"""
Returns a transpose of a matrix.
:param M: The matrix to be transposed
:return: The transpose of the given matrix
"""
# Section 1: if a 1D array, convert to a 2D array = matrix
if not isinstance(M[0], list):
M = [M]
# Section 2: Get dimensions
rows = len(M)
cols = len(M[0])
# Section 3: MT is zeros matrix with transposed dimensions
MT = zeros_matrix(cols, rows)
# Section 4: Copy values from M to it's transpose MT
for i in range(rows):
for j in range(cols):
MT[j][i] = M[i][j]
return MT
def matrix_addition(A, B):
"""
Adds two matrices and returns the sum
:param A: The first matrix
:param B: The second matrix
:return: Matrix sum
"""
# Section 1: Ensure dimensions are valid for matrix addition
rowsA = len(A)
colsA = len(A[0])
rowsB = len(B)
colsB = len(B[0])
if rowsA != rowsB or colsA != colsB:
raise ArithmeticError('Matrices are NOT the same size.')
# Section 2: Create a new matrix for the matrix sum
C = zeros_matrix(rowsA, colsB)
# Section 3: Perform element by element sum
for i in range(rowsA):
for j in range(colsB):
C[i][j] = A[i][j] + B[i][j]
return C
def matrix_subtraction(A, B):
"""
Subtracts matrix B from matrix A and returns difference
:param A: The first matrix
:param B: The second matrix
:return: Matrix difference
"""
# Section 1: Ensure dimensions are valid for matrix subtraction
rowsA = len(A)
colsA = len(A[0])
rowsB = len(B)
colsB = len(B[0])
if rowsA != rowsB or colsA != colsB:
raise ArithmeticError('Matrices are NOT the same size.')
# Section 2: Create a new matrix for the matrix difference
C = zeros_matrix(rowsA, colsB)
# Section 3: Perform element by element subtraction
for i in range(rowsA):
for j in range(colsB):
C[i][j] = A[i][j] - B[i][j]
return C
def matrix_multiply(A, B):
"""
Returns the product of the matrix A * B
:param A: The first matrix - ORDER MATTERS!
:param B: The second matrix
:return: The product of the two matrices
"""
# Section 1: Ensure A & B dimensions are correct for multiplication
rowsA = len(A)
colsA = len(A[0])
rowsB = len(B)
colsB = len(B[0])
if colsA != rowsB:
raise ArithmeticError(
'Number of A columns must equal number of B rows.')
# Section 2: Store matrix multiplication in a new matrix
C = zeros_matrix(rowsA, colsB)
for i in range(rowsA):
for j in range(colsB):
total = 0
for ii in range(colsA):
total += A[i][ii] * B[ii][j]
C[i][j] = total
return C
def multiply_matrices(list):
"""
Find the product of a list of matrices from first to last
:param list: The list of matrices IN ORDER
:return: The product of the matrices
"""
# Section 1: Start matrix product using 1st matrix in list
matrix_product = list[0]
# Section 2: Loop thru list to create product
for matrix in list[1:]:
matrix_product = matrix_multiply(matrix_product, matrix)
return matrix_product
def check_matrix_equality(A, B, tol=None):
"""
Checks the equality of two matrices.
:param A: The first matrix
:param B: The second matrix
:param tol: The decimal place tolerance of the check
:return: The boolean result of the equality check
"""
# Section 1: First ensure matrices have same dimensions
if len(A) != len(B) or len(A[0]) != len(B[0]):
return False
# Section 2: Check element by element equality
# use tolerance if given
for i in range(len(A)):
for j in range(len(A[0])):
if tol is None:
if A[i][j] != B[i][j]:
return False
else:
if round(A[i][j], tol) != round(B[i][j], tol):
return False
return True
def dot_product(A, B):
"""
Perform a dot product of two vectors or matrices
:param A: The first vector or matrix
:param B: The second vector or matrix
"""
# Section 1: Ensure A and B dimensions are the same
rowsA = len(A)
colsA = len(A[0])
rowsB = len(B)
colsB = len(B[0])
if rowsA != rowsB or colsA != colsB:
raise ArithmeticError('Matrices are NOT the same size.')
# Section 2: Sum the products
total = 0
for i in range(rowsA):
for j in range(colsB):
total += A[i][j] * B[i][j]
return total
def unitize_vector(vector):
"""
Find the unit vector for a vector
:param vector: The vector to find a unit vector for
:return: A unit-vector of vector
"""
# Section 1: Ensure that a vector was given
if len(vector) > 1 and len(vector[0]) > 1:
raise ArithmeticError(
'Vector must be a row or column vector.')
# Section 2: Determine vector magnitude
rows = len(vector)
cols = len(vector[0])
mag = 0
for row in vector:
for value in row:
mag += value ** 2
mag = mag ** 0.5
# Section 3: Make a copy of vector
new = copy_matrix(vector)
# Section 4: Unitize the copied vector
for i in range(rows):
for j in range(cols):
new[i][j] = new[i][j] / mag
return new
def check_squareness(A):
"""
Makes sure that a matrix is square
:param A: The matrix to be checked.
"""
if len(A) != len(A[0]):
raise ArithmeticError("Matrix must be square to inverse.")
def determinant_recursive(A, total=0):
"""
Find determinant of a square matrix using full recursion
:param A: the matrix to find the determinant for
:param total=0: safely establish a total at each recursion level
:returns: the running total for the levels of recursion
"""
# Section 1: store indices in list for flexible row referencing
indices = list(range(len(A)))
# Section 2: when at 2x2 submatrices recursive calls end
if len(A) == 2 and len(A[0]) == 2:
val = A[0][0] * A[1][1] - A[1][0] * A[0][1]
return val
# Section 3: define submatrix for focus column and call this function
for fc in indices: # for each focus column, find the submatrix ...
As = copy_matrix(A) # make a copy, and ...
As = As[1:] # ... remove the first row
height = len(As)
for i in range(height): # for each remaining row of submatrix ...
As[i] = As[i][0:fc] + As[i][fc+1:] # zero focus column elements
sign = (-1) ** (fc % 2) # alternate signs for submatrix multiplier
sub_det = determinant_recursive(As) # pass submatrix recursively
total += sign * A[0][fc] * sub_det # total all returns from recursion
return total
def determinant_fast(A):
"""
Create an upper triangle matrix using row operations.
Then product of diagonal elements is the determinant
:param A: the matrix to find the determinant for
:return: the determinant of the matrix
"""
# Section 1: Establish n parameter and copy A
n = len(A)
AM = copy_matrix(A)
# Section 2: Row manipulate A into an upper triangle matrix
for fd in range(n): # fd stands for focus diagonal
if AM[fd][fd] == 0:
AM[fd][fd] = 1.0e-18 # Cheating by adding zero + ~zero
for i in range(fd+1, n): # skip row with fd in it.
crScaler = AM[i][fd] / AM[fd][fd] # cr stands for "current row".
for j in range(n): # cr - crScaler * fdRow, one element at a time.
AM[i][j] = AM[i][j] - crScaler * AM[fd][j]
# Section 3: Once AM is in upper triangle form ...
product = 1.0
for i in range(n):
product *= AM[i][i] # ... product of diagonals is determinant
return product
def check_non_singular(A):
"""
Ensure matrix is NOT singular
:param A: The matrix under consideration
:return: determinant of A - nonzero is positive boolean
otherwise, raise ArithmeticError
"""
det = determinant_fast(A)
if det != 0:
return det
else:
raise ArithmeticError("Singular Matrix!")