diff options
author | auke <wiggers.auke@gmail.com> | 2016-02-05 09:31:13 +0100 |
---|---|---|
committer | auke <wiggers.auke@gmail.com> | 2016-02-05 09:31:13 +0100 |
commit | 512a820c6e02dfecb757bc5b01397ff8168847dc (patch) | |
tree | 9cc94dfebc6300cabbfe24868dce6745138595b8 | |
parent | 12ec338c23f3db1e155661fdbf098a546e48dc1e (diff) | |
download | numpy-512a820c6e02dfecb757bc5b01397ff8168847dc.tar.gz |
DOC: add vstack, hstack, dstack reference to stack documentation.
-rw-r--r-- | numpy/core/shape_base.py | 5 |
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 |