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

Skip to content
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