From d7538c5d8aaaacd1da616e77e3005df8a15b94b4 Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Fri, 5 Feb 2016 11:20:20 -0800 Subject: Revert "DOC: add vstack, hstack, dstack reference to stack documentation." --- numpy/core/shape_base.py | 7 ++----- 1 file 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 -- cgit v1.2.1