diff options
author | Denis Alevi <mail@denisalevi.de> | 2016-02-27 03:59:26 +0100 |
---|---|---|
committer | Eren Sezener <erensezener@gmail.com> | 2016-03-20 14:41:40 +0100 |
commit | 7c76ef7ea3adbd9c70a08ee39fdf1b56fb940b3b (patch) | |
tree | 0ba0a9824993f010493d4c6549edbda72fc1ef83 /doc | |
parent | e7de401f5c9634a2a63eb8f44f2193be1a946191 (diff) | |
download | numpy-7c76ef7ea3adbd9c70a08ee39fdf1b56fb940b3b.tar.gz |
ENH: generalize rot90 with axes kwarg, move to function_base.py, and add tests
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.12.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.12.0-notes.rst b/doc/release/1.12.0-notes.rst index 073e3b1d6..96118e6f7 100644 --- a/doc/release/1.12.0-notes.rst +++ b/doc/release/1.12.0-notes.rst @@ -99,6 +99,12 @@ keyword argument. It can be set to False when no write operation to the returned array is expected to avoid accidental unpredictable writes. + +``axes`` keyword argument for ``rot90`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The ``axes`` keyword argument in ``rot90`` determines the plane in which the +array is rotated. It defaults to ``axes=(0,1)`` as in the originial function. + Generalized ``flip`` ~~~~~~~~~~~~~~~~~~~~ ``flipud`` and ``fliplr`` reverse the elements of an array along axis=0 and |