@@ -5054,7 +5054,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
5054
5054
to colors based on the `norm` (mapping scalar to scalar)
5055
5055
and the `cmap` (mapping the normed scalar to a color).
5056
5056
5057
- cmap : `~matplotlib.colors.Colormap`,
5057
+ cmap : `~matplotlib.colors.Colormap`, \
5058
5058
`~matplotlib.colors.BivariateColormap`optional, default: None
5059
5059
If None, default to rc `image.cmap` value. `cmap` is ignored
5060
5060
if `X` is 3-D but not bivariate, directly specifying RGB(A) values.
@@ -5081,7 +5081,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
5081
5081
on the Agg, ps and pdf backends. Other backends will fall back to
5082
5082
'nearest'.
5083
5083
5084
- norm : `~matplotlib.colors.Normalize`,
5084
+ norm : `~matplotlib.colors.Normalize`, \
5085
5085
`matplotlib.colors.BivariateNorm` optional, default: None
5086
5086
A `~matplotlib.colors.Normalize` instance is used to scale
5087
5087
a 2-D float `X` input to the (0, 1) range for input to the
@@ -5302,10 +5302,12 @@ def pcolor(self, *args, **kwargs):
5302
5302
vectors, they will be expanded as needed into the appropriate 2-D
5303
5303
arrays, making a rectangular grid.
5304
5304
5305
- cmap : `~matplotlib.colors.Colormap`, optional, default: None
5305
+ cmap : `~matplotlib.colors.Colormap` or \
5306
+ `matplotlib.colors.BivariateColormap` optional, default: None
5306
5307
If `None`, default to rc settings.
5307
5308
5308
- norm : `matplotlib.colors.Normalize`, optional, default: None
5309
+ norm : `matplotlib.colors.Normalize` or \
5310
+ `matplotlib.colors.BivariateNorm` optional, default: None
5309
5311
An instance is used to scale luminance data to (0, 1).
5310
5312
If `None`, defaults to :func:`normalize`.
5311
5313
@@ -5572,12 +5574,12 @@ def pcolormesh(self, *args, **kwargs):
5572
5574
Keyword arguments:
5573
5575
5574
5576
*cmap*: [ *None* | Colormap ]
5575
- A :class:`matplotlib.colors.Colormap` or
5577
+ A :class:`matplotlib.colors.Colormap` or \
5576
5578
:class:`matplotlib.colors.BivariateColormap`instance. If *None*,
5577
5579
use rc settings.
5578
5580
5579
5581
*norm*: [ *None* | Normalize ]
5580
- A :class:`matplotlib.colors.Normalize` or
5582
+ A :class:`matplotlib.colors.Normalize` or \
5581
5583
:class:`matplotlib.colors.BivariateNorm` instance is used to
5582
5584
scale luminance data to 0,1. If *None*, defaults to
5583
5585
:func:`normalize`.
@@ -5765,12 +5767,12 @@ def pcolorfast(self, *args, **kwargs):
5765
5767
Optional keyword arguments:
5766
5768
5767
5769
*cmap*: [ *None* | Colormap ]
5768
- A :class:`matplotlib.colors.Colormap` or
5770
+ A :class:`matplotlib.colors.Colormap` or \
5769
5771
:class:`matplotlib.colors.BivariateColormap` instance from cm.
5770
5772
If *None*, use rc settings.
5771
5773
5772
5774
*norm*: [ *None* | Normalize ]
5773
- A :class:`matplotlib.colors.Normalize` or
5775
+ A :class:`matplotlib.colors.Normalize` or \
5774
5776
:class:`matplotlib.colors.BivariateNorm` instance is used to scale
5775
5777
luminance data to 0,1. If *None*, defaults to normalize()
5776
5778
0 commit comments