8000 DOC Update description of ax.contour method, resolves #21310 by Kislovskiy · Pull Request #21321 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC Update description of ax.contour method, resolves #21310 #21321

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

Merged
merged 3 commits into from
Oct 10, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
8000 Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions lib/mpl_toolkits/mplot3d/axes3d.py
69CD
Original file line number Diff line number Diff line change
Expand Up @@ -2103,8 +2103,16 @@ def contour(self, X, Y, Z, *args,

Parameters
----------
X, Y, Z : array-like
Input data.
X, Y : array-like,
*X* and *Y* are x-y coordinates, specified as 2D arrays of the same
size as *Z*. `numpy.meshgrid` function could be used to create *X*
and *Y* coordinate matrices from coordinate vectors.
If ``size(Z) == [N, N]`` the *X* and *Y* matrices could be
specified as 1D arrays, where ``len(X) == len(Y) == N``
Z : array-like,
*Z* is a 2D array that specifies the height values at each x-y
coordinate over which the contour is drawn. Z must have at least
two rows and two columns.
extend3d : bool, default: False
Whether to extend contour in 3D.
stride : int
Expand Down
0