

import numpy
import matplotlib.pyplot as pyplot

a = 5000
b = 5002

M = (b-a)*numpy.random.random((5,5))+a

fig = pyplot.figure()
pc = pyplot.pcolor(M)

fig.colorbar(pc)
