6
6
7
7
class MatrixOperations :
8
8
class IncompatibleDimensionsError (Exception ):
9
+ def __init__ (self , message : Optional [str ] = None ) -> None :
10
+ self .message = message if message else "Incompatible dimensions"
11
+
9
12
def __str__ (self ) -> str :
10
- return "Matrices are not compatible.\n " \
11
- "No. of Columns in Matrix 1 have to be the same as No. of Rows in Matrix 2."
13
+ return self .message
12
14
13
15
@staticmethod
14
16
def __get_dimensions (matrix_1 : matrix , matrix_2 : Optional [matrix ] = None ) -> \
@@ -44,7 +46,9 @@ def addition(matrix_1: matrix, matrix_2: matrix) -> matrix:
44
46
compatible_dim : bool
45
47
dim_1 , dim_2 , same_dim , compatible_dim = MatrixOperations .__get_dimensions (matrix_1 , matrix_2 )
46
48
if not same_dim :
47
- raise MatrixOperations .IncompatibleDimensionsError
49
+ raise MatrixOperations .IncompatibleDimensionsError ("Matrices are not compatible.\n "
50
+ "No. of Rows & Columns in Matrix 1 have to be the same "
51
+ "as No. of Rows & Columns in Matrix 2." )
48
52
sum_m : matrix = [[0 for cols in range (dim_1 [1 ])] for rows in range (dim_1 [0 ])]
49
53
for i in range (0 , dim_1 [0 ]):
50
54
for j in range (0 , dim_1 [1 ]):
@@ -60,7 +64,9 @@ def subtraction(matrix_1: matrix, matrix_2: matrix) -> matrix:
60
64
compatible_dim : bool
61
65
dim_1 , dim_2 , same_dim , compatible_dim = MatrixOperations .__get_dimensions (matrix_1 , matrix_2 )
62
66
if not same_dim :
63
- raise MatrixOperations .IncompatibleDimensionsError
67
+ raise MatrixOperations .IncompatibleDimensionsError ("Matrices are not compatible.\n "
68
+ "No. of Rows & Columns in Matrix 1 have to be the same "
69
+ "as No. of Rows & Columns in Matrix 2." )
64
70
difference_m : matrix = [[0 for cols in range (dim_1 [1 ])] for rows in range (dim_1 [0 ])]
65
71
for i in range (0 , dim_1 [0 ]):
66
72
for j in range (0 , dim_1 [1 ]):
@@ -76,7 +82,9 @@ def multiplication(matrix_1: matrix, matrix_2: matrix) -> matrix:
76
82
compatible_dim : bool
77
83
dim_1 , dim_2 , same_dim , compatible_dim = MatrixOperations .__get_dimensions (matrix_1 , matrix_2 )
78
84
if not compatible_dim :
79
- raise MatrixOperations .IncompatibleDimensionsError
85
+ raise MatrixOperations .IncompatibleDimensionsError ("Matrices are not compatible.\n "
86
+ "No. of Columns in Matrix 1 have to be the same as No. "
87
+ "of Rows in Matrix 2." )
80
88
product_m : matrix = [[0 for cols in range (dim_2 [1 ])] for rows in range (dim_1 [0 ])]
81
89
for i in range (0 , dim_1 [0 ]):
82
90
for j in range (0 , dim_2 [1 ]):
0 commit comments