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 ? Calcul scientifique
avec Python
Voir le programme détaillé
Classe « Axes »

Méthode matplotlib.figure.Axes.matshow

Signature de la méthode matshow

def matshow(self, Z, **kwargs) 

Description

help(Axes.matshow)

Plot the values of a 2D matrix or array as color-coded image.

The matrix will be shown the way it would be printed, with the first
row at the top.  Row and column numbering is zero-based.

Parameters
----------
Z : (M, N) array-like
    The matrix to be displayed.

Returns
-------
`~matplotlib.image.AxesImage`

Other Parameters
----------------
**kwargs : `~matplotlib.axes.Axes.imshow` arguments

See Also
--------
imshow : More general function to plot data on a 2D regular raster.

Notes
-----
This is just a convenience function wrapping `.imshow` to set useful
defaults for displaying a matrix. In particular:

- Set ``origin='upper'``.
- Set ``interpolation='nearest'``.
- Set ``aspect='equal'``.
- Ticks are placed to the left and above.
- Ticks are formatted to show integer indices.



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é