From e54d9387898912827e6c250db5ad2883dfc6cd39 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Fri, 15 May 2020 13:15:03 +0300 Subject: [PATCH] DOC: note all of the [vhd]{split,stack} variants in main `stack` see-also --- numpy/core/shape_base.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py index ee56dbe43342..3268426279a7 100644 --- a/numpy/core/shape_base.py +++ b/numpy/core/shape_base.py @@ -387,6 +387,12 @@ def stack(arrays, axis=0, out=None): concatenate : Join a sequence of arrays along an existing axis. split : Split array into a list of multiple sub-arrays of equal size. block : Assemble arrays from blocks. + dsplit : Split array into multiple sub-arrays along the 3rd axis (depth-wise). + dstack : Stack arrays in sequence depth wise (along third dimension). + hsplit : Split array into multiple sub-arrays horizontally (column-wise). + hstack : Stack arrays in sequence horizontally (column wise). + vsplit : Split array into multiple sub-arrays vertically (row wise). + vstack : Stack arrays in sequence vertically (row wise). Examples --------