Download this file
10 lines (8 with data), 210 Bytes
| 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')
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.