summaryrefslogtreecommitdiff
path: root/numpy/core/multiarray.py
diff options
context:
space:
mode:
authorSebastian Berg <sebastian@sipsolutions.net>2020-05-15 08:34:01 -0500
committerGitHub <noreply@github.com>2020-05-15 08:34:01 -0500
commit50ce0fce70cac779919d97578381a9d762f42594 (patch)
tree4ba92795fac94d9ff9ef7876699a788b2dae665d /numpy/core/multiarray.py
parentbb63a1a49bf1fe766ceab3237e0003aef5f19854 (diff)
parenta1800a7dfe68c499e0da41ec4037eba42ba2051c (diff)
downloadnumpy-50ce0fce70cac779919d97578381a9d762f42594.tar.gz
Merge pull request #16197 from timhoffm/doc-stack
DOC: Unify cross-references between array joining methods
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r--numpy/core/multiarray.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py
index f3d48459a..5ae6a4272 100644
--- a/numpy/core/multiarray.py
+++ b/numpy/core/multiarray.py
@@ -171,14 +171,15 @@ def concatenate(arrays, axis=None, out=None):
array_split : Split an array into multiple sub-arrays of equal or
near-equal size.
split : Split array into a list of multiple sub-arrays of equal size.
- hsplit : Split array into multiple sub-arrays horizontally (column wise)
- vsplit : Split array into multiple sub-arrays vertically (row wise)
+ hsplit : Split array into multiple sub-arrays horizontally (column wise).
+ vsplit : Split array into multiple sub-arrays vertically (row wise).
dsplit : Split array into multiple sub-arrays along the 3rd axis (depth).
stack : Stack a sequence of arrays along a new axis.
- hstack : Stack arrays in sequence horizontally (column wise)
- vstack : Stack arrays in sequence vertically (row wise)
- dstack : Stack arrays in sequence depth wise (along third dimension)
block : Assemble arrays from blocks.
+ hstack : Stack arrays in sequence horizontally (column wise).
+ vstack : Stack arrays in sequence vertically (row wise).
+ dstack : Stack arrays in sequence depth wise (along third dimension).
+ column_stack : Stack 1-D arrays as columns into a 2-D array.
Notes
-----