Skip to content

Commit 8b5a295

Browse files
committed
Merge branch 'master' of github.com:scipy-lectures/scipy-lecture-notes
2 parents d44b8f9 + 933ea89 commit 8b5a295

File tree

16 files changed

+28
-28
lines changed

16 files changed

+28
-28
lines changed

advanced/image_processing/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ For large data, use ``np.memmap`` for memory mapping::
115115
Working on a list of image files ::
116116

117117
>>> for i in range(10):
118-
... im = np.random.random_integers(0, 255, 10000).reshape((100, 100))
118+
... im = np.random.randint(0, 256, 10000).reshape((100, 100))
119119
... misc.imsave('random_%02d.png' % i, im)
120120
>>> from glob import glob
121121
>>> filelist = glob('random*.png')
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22

3-
Code for the chapter's exercices
3+
Code for the chapter's exercises
44
--------------------------------
55

0 commit comments

Comments
 (0)