-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMatrix.py
More file actions
143 lines (74 loc) · 4.08 KB
/
Matrix.py
File metadata and controls
143 lines (74 loc) · 4.08 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
import numpy as np
class Matrix:
def __init__( self, matrix ):
self.matrix = matrix
self.totalOfRows = len( self.matrix )
if self.totalOfRows > 0 :
self.totalOfColumns = len( self.matrix[0] )
def __add__( self, anotherMatrix ):
if isinstance( anotherMatrix, Matrix ) :
if ( self.totalOfRows == anotherMatrix.totalOfRows ) and ( self.totalOfColumns == anotherMatrix.totalOfColumns ) :
result = [ [ None for i in range( self.totalOfColumns ) ] for i in range( self.totalOfRows ) ]
result = Matrix( result )
for i in range( self.totalOfRows ):
for j in range( self.totalOfColumns ):
result[ i ][ j ] = self.matrix[ i ][ j ] + anotherMatrix[ i ][ j ]
elif isinstance( anotherMatrix, ( int, float ) ) :
result = [ [ None for i in range( self.totalOfColumns ) ] for i in range( self.totalOfRows ) ]
result = Matrix( result )
for i in range( self.totalOfRows ):
for j in range( self.totalOfColumns ):
result[ i ][ j ] = self.matrix[ i ][ j ] + anotherMatrix
return result
def __radd__( self, anotherMatrix ):
if isinstance( anotherMatrix, ( int, float ) ) :
result = [ [ None for i in range( self.totalOfColumns ) ] for i in range( self.totalOfRows ) ]
result = Matrix( result )
for i in range( self.totalOfRows ):
for j in range( self.totalOfColumns ):
result[ i ][ j ] = self.matrix[ i ][ j ] + anotherMatrix
return result
def __mul__( self, anotherMatrix ):
if isinstance( anotherMatrix, Matrix ) :
if ( self.totalOfColumns == anotherMatrix.totalOfRows ) :
result = [ [ 0 for n in range( anotherMatrix.totalOfColumns ) ] for m in range( self.totalOfRows ) ]
result = Matrix( result )
for mm in range( self.totalOfRows ):
for nn in range( anotherMatrix.totalOfColumns ):
for m in range( anotherMatrix.totalOfRows ):
result[ mm ][ nn ] = result[ mm ][ nn ] + ( self.matrix[ mm ][ m ] * anotherMatrix[ m ][ nn ] )
return result
else:
raise BaseException("Incompatible Dimensions")
elif isinstance( anotherMatrix, ( int, float ) ) :
return self.scalarByMatrix( anotherMatrix )
else:
raise BaseException("Incompatible Types")
"""
Define right-side multiplication
"""
def __rmul__( self, value ):
if isinstance( value, ( int, float ) ) :
return self.scalarByMatrix( value )
else:
raise BaseException("Incompatible Types")
def scalarByMatrix( self, scalar ) :
result = [ [ self.matrix[ m ][ n ] for n in range( self.totalOfColumns ) ] for m in range( self.totalOfRows ) ]
result = Matrix( result )
for mm in range( self.totalOfRows ):
for nn in range( self.totalOfColumns ):
result[ mm ][ nn ] = scalar*result[ mm ][ nn ]
return result
def __getitem__( self, i ):
return self.matrix[ i ]
def asArray( self ):
return self.matrix
def transpose( self ):
result = [ [ self.matrix[ n ][ m ] for n in range( self.totalOfRows ) ] for m in range( self.totalOfColumns ) ]
result = Matrix( result )
return result
def inverse( self ):
result = np.linalg.inv( self.matrix )
result = [ [ result[ m ][ n ] for n in range( self.totalOfRows ) ] for m in range( self.totalOfColumns ) ]
result = Matrix( result )
return result