Merge pull request #134 from poedator/patch-4

upd example in a49
This commit is contained in:
Nicolas P. Rougier 2020-10-26 09:04:42 +01:00 committed by GitHub
commit 711a091779
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -604,7 +604,7 @@ hint: np.set_printoptions
< a49
np.set_printoptions(threshold=float("inf"))
Z = np.zeros((16,16))
Z = np.zeros((40,40))
print(Z)
< q50