aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/array_ops.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/array_ops.py')
-rw-r--r--tensorflow/python/ops/array_ops.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/tensorflow/python/ops/array_ops.py b/tensorflow/python/ops/array_ops.py
index f3bcb6ce77..f1c4d922e0 100644
--- a/tensorflow/python/ops/array_ops.py
+++ b/tensorflow/python/ops/array_ops.py
@@ -1690,21 +1690,21 @@ def meshgrid(*args, **kwargs):
results in
```prettyprint
- X = [[1, 1, 1],
- [2, 2, 2],
- [3, 3, 3]]
- Y = [[4, 5, 6],
- [4, 5, 6],
- [4, 5, 6]]
+ X = [[1, 2, 3],
+ [1, 2, 3],
+ [1, 2, 3]]
+ Y = [[4, 4, 4],
+ [5, 5, 5],
+ [6, 6, 6]]
```
Args:
- *args: `Tensor`s with rank 1
- indexing: Either 'xy' or 'ij' (optional, default: 'xy')
+ *args: `Tensor`s with rank 1.
+ indexing: Either 'xy' or 'ij' (optional, default: 'xy').
name: A name for the operation (optional).
Returns:
- outputs: A list of N `Tensor`s with rank N
+ outputs: A list of N `Tensor`s with rank N.
"""
indexing = kwargs.pop("indexing", "xy")