Skip to content

Commit 4090dc6

Browse files
authored
Merge pull request #220 from anthonyduong9/solve-exercise-24
solves exercise 24
2 parents 916e1ec + efb6e2e commit 4090dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/exercises100.ktx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Multiply a 5x3 matrix by a 3x2 matrix (real matrix product) (★☆☆)
260260
hint:
261261

262262
< a24
263-
Z = np.dot(np.ones((5,3)), np.ones((3,2)))
263+
Z = np.matmul(np.ones((5, 3)), np.ones((3, 2)))
264264
print(Z)
265265

266266
# Alternative solution, in Python 3.5 and above

0 commit comments

Comments
 (0)