matplotlib.pyplot.clim#
- matplotlib.pyplot.clim(vmin=None,vmax=None)[source]#
Set the color limits of the current image.
If eithervmin orvmax is None, the image min/max respectivelywill be used for color scaling.
If you want to set the clim of multiple images, use
set_clim
on every image, for example:forimingca().get_images():im.set_clim(0,0.5)
On this page