diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2020-05-15 08:34:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 08:34:01 -0500 |
commit | 50ce0fce70cac779919d97578381a9d762f42594 (patch) | |
tree | 4ba92795fac94d9ff9ef7876699a788b2dae665d /numpy/core/multiarray.py | |
parent | bb63a1a49bf1fe766ceab3237e0003aef5f19854 (diff) | |
parent | a1800a7dfe68c499e0da41ec4037eba42ba2051c (diff) | |
download | numpy-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.py | 11 |
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 ----- |