diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 3 | ||||
-rw-r--r-- | doc/source/reference/routines.array-manipulation.rst | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index 873b7526c..c4ff2e4b4 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -14,6 +14,9 @@ Highlights * Addition of *np.linalg.multi_dot*: compute the dot product of two or more arrays in a single function call, while automatically selecting the fastest evaluation order. +* The new function `np.stack` provides a general interface for joining a + sequence of arrays along a new axis, complementing `np.concatenate` for + joining along an existing axis. * Addition of `nanprod` to the set of nanfunctions. diff --git a/doc/source/reference/routines.array-manipulation.rst b/doc/source/reference/routines.array-manipulation.rst index 2b3ba342a..a8aa2d0d8 100644 --- a/doc/source/reference/routines.array-manipulation.rst +++ b/doc/source/reference/routines.array-manipulation.rst @@ -65,8 +65,9 @@ Joining arrays .. autosummary:: :toctree: generated/ - column_stack concatenate + stack + column_stack dstack hstack vstack @@ -76,10 +77,10 @@ Splitting arrays .. autosummary:: :toctree: generated/ + split array_split dsplit hsplit - split vsplit Tiling arrays |