diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-05-12 00:43:16 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-05-12 00:43:16 -0400 |
commit | 18c89dbf87929e68479b2272ad7ab4b321120773 (patch) | |
tree | 3b28678347cdc06a3b201d46b0877f6e0cce1975 /numpy/add_newdocs.py | |
parent | fb6426b3d9b25f5f7a8324fa1d9bab3f4c23dd95 (diff) | |
parent | 93d3b8dedc5cd602c867a234f07188fe5bd5479b (diff) | |
download | numpy-18c89dbf87929e68479b2272ad7ab4b321120773.tar.gz |
Merge pull request #5605 from shoyer/stack
ENH: add np.stack
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 4cc626ca9..55bcf8ee1 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -1142,7 +1142,7 @@ add_newdoc('numpy.core.multiarray', 'concatenate', """ concatenate((a1, a2, ...), axis=0) - Join a sequence of arrays together. + Join a sequence of arrays along an existing axis. Parameters ---------- @@ -1166,6 +1166,7 @@ add_newdoc('numpy.core.multiarray', 'concatenate', 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) |