summaryrefslogtreecommitdiff
path: root/numpy/core/multiarray.py
diff options
context:
space:
mode:
authorTim Hoffmann <2836374+timhoffm@users.noreply.github.com>2020-05-10 04:21:10 +0200
committerTim Hoffmann <2836374+timhoffm@users.noreply.github.com>2020-05-10 16:52:37 +0200
commita1800a7dfe68c499e0da41ec4037eba42ba2051c (patch)
tree8188cc5295b20cccc31c99613417602c66bc76ee /numpy/core/multiarray.py
parente66453568b685dee47d6e6e634b3a47edffcaeed (diff)
downloadnumpy-a1800a7dfe68c499e0da41ec4037eba42ba2051c.tar.gz
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 ec36f4f7e..4d8b0077a 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
-----