MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / figimage

Function figimage

lib/matplotlib/pyplot.py:2891–2919  ·  view source on GitHub ↗
(
    X: ArrayLike,
    xo: int = 0,
    yo: int = 0,
    alpha: float | None = None,
    norm: str | Normalize | None = None,
    cmap: str | Colormap | None = None,
    vmin: float | None = None,
    vmax: float | None = None,
    origin: Literal["upper", "lower"] | None = None,
    resize: bool = False,
    *,
    colorizer: Colorizer | None = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

2889# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2890@_copy_docstring_and_deprecators(Figure.figimage)
2891def figimage(
2892 X: ArrayLike,
2893 xo: int = 0,
2894 yo: int = 0,
2895 alpha: float | None = None,
2896 norm: str | Normalize | None = None,
2897 cmap: str | Colormap | None = None,
2898 vmin: float | None = None,
2899 vmax: float | None = None,
2900 origin: Literal["upper", "lower"] | None = None,
2901 resize: bool = False,
2902 *,
2903 colorizer: Colorizer | None = None,
2904 **kwargs,
2905) -> FigureImage:
2906 return gcf().figimage(
2907 X,
2908 xo=xo,
2909 yo=yo,
2910 alpha=alpha,
2911 norm=norm,
2912 cmap=cmap,
2913 vmin=vmin,
2914 vmax=vmax,
2915 origin=origin,
2916 resize=resize,
2917 colorizer=colorizer,
2918 **kwargs,
2919 )
2920
2921
2922# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcfFunction · 0.85
figimageMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…