Download this file
1 2 3 4 5 6 7 8 9
from pylab import * x = arange(100.0); x.shape = 10,10 im = imshow(x, interpolation='nearest') colorbar() savefig('../fig/mpl_image_jet') im.set_interpolation('bilinear') hot() savefig('../fig/mpl_image_hot')