summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@gmail.com>2016-02-05 11:20:20 -0800
committerStephan Hoyer <shoyer@gmail.com>2016-02-05 11:20:20 -0800
commitd7538c5d8aaaacd1da616e77e3005df8a15b94b4 (patch)
tree9fadc255cbaadf6cae765039058011058c4dc1ef
parent99cd63471583f5bd660ff9c09ad94f736f372b4d (diff)
downloadnumpy-revert-7191-stack_documentation.tar.gz
Revert "DOC: add vstack, hstack, dstack reference to stack documentation."revert-7191-stack_documentation
-rw-r--r--numpy/core/shape_base.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py
index 646ee0e47..599b48d82 100644
--- a/numpy/core/shape_base.py
+++ b/numpy/core/shape_base.py
@@ -199,7 +199,7 @@ def vstack(tup):
--------
stack : Join a sequence of arrays along a new axis.
hstack : Stack arrays in sequence horizontally (column wise).
- dstack : Stack arrays in sequence depthwise (along third dimension).
+ dstack : Stack arrays in sequence depth wise (along third dimension).
concatenate : Join a sequence of arrays along an existing axis.
vsplit : Split array into a list of multiple sub-arrays vertically.
@@ -250,7 +250,7 @@ def hstack(tup):
--------
stack : Join a sequence of arrays along a new axis.
vstack : Stack arrays in sequence vertically (row wise).
- dstack : Stack arrays in sequence depthwise (along third axis).
+ dstack : Stack arrays in sequence depth wise (along third axis).
concatenate : Join a sequence of arrays along an existing axis.
hsplit : Split array along second axis.
@@ -304,9 +304,6 @@ def stack(arrays, axis=0):
See Also
--------
concatenate : Join a sequence of arrays along an existing axis.
- vstack : Stack arrays vertically, along an existing row axis.
- hstack : Stack arrays horizontally, along an existing column axis.
- dstack : Stack arrays depthwise, along an existing third axis.
split : Split array into a list of multiple sub-arrays of equal size.
Examples