In [1]:
%pylab inline
Populating the interactive namespace from numpy and matplotlib
In [4]:
import scipy.misc
In [5]:
img = scipy.misc.lena()
In [6]:
imshow(img)
colorbar()
Out[6]:
<matplotlib.colorbar.Colorbar instance at 0x10623e5f0>
In [7]:
gray()
<matplotlib.figure.Figure at 0x10627df10>
In [8]:
imshow(img)
colorbar()
Out[8]:
<matplotlib.colorbar.Colorbar instance at 0x1018531b8>
In [ ]: