File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Original file line number Diff line number Diff line change @@ -7221,6 +7221,16 @@ def pcolormesh(self, *args, **kwargs):
7221
7221
pcolormesh(X, Y, C)
7222
7222
pcolormesh(C, **kwargs)
7223
7223
7224
+ Create a pseudocolor plot of a 2-D array.
7225
+
7226
+ pcolormesh is similar to :func:`~matplotlib.pyplot.pcolor`,
7227
+ but uses a different mechanism and returns a different
7228
+ object; pcolor returns a
7229
+ :class:`~matplotlib.collections.PolyCollection` but pcolormesh
7230
+ returns a
7231
+ :class:`~matplotlib.collections.QuadMesh`. It is much faster,
7232
+ so it is almost always preferred for large arrays.
7233
+
7224
7234
*C* may be a masked array, but *X* and *Y* may not. Masked
7225
7235
array support is implemented via *cmap* and *norm*; in
7226
7236
contrast, :func:`~matplotlib.pyplot.pcolor` simply does not
You can’t perform that action at this time.
0 commit comments