summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/shape_base.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py
index 599b48d82..04a34ed8f 100644
--- a/numpy/core/shape_base.py
+++ b/numpy/core/shape_base.py
@@ -304,6 +304,11 @@ def stack(arrays, axis=0):
See Also
--------
concatenate : Join a sequence of arrays along an existing axis.
+ vstack : Stack arrays in sequence vertically, along the existing row axis.
+ hstack : Stack arrays in sequence horizontally, along the existing
+ column axis.
+ dstack : Stack arrays in sequence depth wise, along the existing
+ third axis.
split : Split array into a list of multiple sub-arrays of equal size.
Examples