Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Vous êtes un professionnel et vous avez besoin d'une formation ? Programmation Python
Les fondamentaux
Voir le programme détaillé
Module « matplotlib.pyplot »

Fonction clim - module matplotlib.pyplot

Signature de la fonction clim

def clim(vmin: 'float | None' = None, vmax: 'float | None' = None) -> 'None' 

Description

help(matplotlib.pyplot.clim)

Set the color limits of the current image.

If either *vmin* or *vmax* is None, the image min/max respectively
will be used for color scaling.

If you want to set the clim of multiple images, use
`~.ScalarMappable.set_clim` on every image, for example::

  for im in gca().get_images():
      im.set_clim(0, 0.5)



Vous êtes un professionnel et vous avez besoin d'une formation ? Mise en oeuvre d'IHM
avec Qt et PySide6
Voir le programme détaillé