summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 20e3edc82..dd1bd18aa 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -4846,9 +4846,9 @@ def meshgrid(*xi, copy=True, sparse=False, indexing='xy'):
Returns
-------
X1, X2,..., XN : ndarray
- For vectors `x1`, `x2`,..., `xn` with lengths ``Ni=len(xi)`` ,
- returns ``(N1, N2, N3,...Nn)`` shaped arrays if indexing='ij'
- or ``(N2, N1, N3,...Nn)`` shaped arrays if indexing='xy'
+ For vectors `x1`, `x2`,..., `xn` with lengths ``Ni=len(xi)``,
+ returns ``(N1, N2, N3,..., Nn)`` shaped arrays if indexing='ij'
+ or ``(N2, N1, N3,..., Nn)`` shaped arrays if indexing='xy'
with the elements of `xi` repeated to fill the matrix along
the first dimension for `x1`, the second for `x2` and so on.