I have created a 2D gaussian function for display, the variable gauss (below) is in range of (0, 1). what I want to do is change the default colormap dynamic range from (black, white) to (gray, white)
gauss = np.exp( -(((Xm**2)+(Ym**2)) / (2.0* s**2)) )
p=plt.imshow(gauss, 'Greys_r')