summaryrefslogtreecommitdiff
path: root/numpy/lib/shape_base.py
diff options
context:
space:
mode:
authorTim Hoffmann <2836374+timhoffm@users.noreply.github.com>2020-05-10 04:21:10 +0200
committerTim Hoffmann <2836374+timhoffm@users.noreply.github.com>2020-05-10 16:52:37 +0200
commita1800a7dfe68c499e0da41ec4037eba42ba2051c (patch)
tree8188cc5295b20cccc31c99613417602c66bc76ee /numpy/lib/shape_base.py
parente66453568b685dee47d6e6e634b3a47edffcaeed (diff)
downloadnumpy-a1800a7dfe68c499e0da41ec4037eba42ba2051c.tar.gz
DOC: Unify cross-references between array joining methods
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r--numpy/lib/shape_base.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py
index 72a7f79d7..78703555e 100644
--- a/numpy/lib/shape_base.py
+++ b/numpy/lib/shape_base.py
@@ -688,10 +688,12 @@ def dstack(tup):
See Also
--------
- stack : Join a sequence of arrays along a new axis.
- vstack : Stack along first axis.
- hstack : Stack along second axis.
concatenate : Join a sequence of arrays along an existing axis.
+ stack : Join a sequence of arrays along a new axis.
+ block : Assemble an nd-array from nested lists of blocks.
+ vstack : Stack arrays in sequence vertically (row wise).
+ hstack : Stack arrays in sequence horizontally (column wise).
+ column_stack : Stack 1-D arrays as columns into a 2-D array.
dsplit : Split array along third axis.
Examples