Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Getting numeric value from unit registry on imshow function #26104

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5718,6 +5718,18 @@ def imshow(self, X, cmap=None, norm=None, *, aspect=None,
`~matplotlib.pyplot.imshow` expects RGB images adopting the straight
(unassociated) alpha representation.
"""
if not isinstance(vmax, (int, float)):
try:
vmax = vmax.to_tuple()[0]
except AttributeError:
raise AttributeError("vmax must be a scalar or a 1-element array")

if not isinstance(vmin, (int, float)):
try:
vmin = vmin.to_tuple()[0]
except AttributeError:
raise AttributeError("vmin must be a scalar or a 1-element array")

if aspect is None:
aspect = mpl.rcParams['image.aspect']
self.set_aspect(aspect)
Expand Down