Skip to content

Commit f1dcfb5

Browse files
committed
new commit
1 parent 3aeb562 commit f1dcfb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linear-algebra/matrix_multiplication.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
second_matrix = non_square_matrix()
66

77
if first_matrix.shape[1] != second_matrix.shape[0]:
8-
print('The number of columns in thr first matrix must be equal to the number of rows in the second matrix')
8+
print('The number of columns in the first matrix must be equal to the number of rows in the second matrix')
99
else:
1010
product = np.dot(first_matrix, second_matrix)
1111
print(f'[first matrix] x [second matrix]: {product}')

0 commit comments

Comments
 (0)