From 512a820c6e02dfecb757bc5b01397ff8168847dc Mon Sep 17 00:00:00 2001 From: auke Date: Fri, 5 Feb 2016 09:31:13 +0100 Subject: DOC: add vstack, hstack, dstack reference to stack documentation. --- numpy/core/shape_base.py | 5 +++++ 1 file changed, 5 insertions(+) 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 -- cgit v1.2.1