diff options
author | Allan Haldane <allan.haldane@gmail.com> | 2015-03-28 21:40:52 -0400 |
---|---|---|
committer | Allan Haldane <allan.haldane@gmail.com> | 2015-04-02 22:58:10 -0400 |
commit | 8d47d697dad06116abe2b40ad6ee78f867292209 (patch) | |
tree | 4ca0747dccca27b2c989897638c1bfa5743e6bb0 /doc | |
parent | 061aa26e1b772d46d3b97018cabb7d01637284cd (diff) | |
download | numpy-8d47d697dad06116abe2b40ad6ee78f867292209.tar.gz |
ENH sync ndarray methods doc/args with numpy function doc/args
Modified the docstrings to all, any, sum, prod, mean, var, std, min, max
to add keepdims argument.
Added 'out' keyword parameter to numpy.argmin, numpy.argmax, to mirror
ndarray methods.
Updated ndarray.clip docstring to give correct parameter description.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index f6e8c09ef..d5cd99203 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -153,6 +153,12 @@ interpolation behavior. NumPy arrays are supported as input for ``pad_width``, and an exception is raised if its values are not of integral type. +*np.argmax* and *np.argmin* now support an ``out`` argument +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The ``out`` parameter was added to *np.argmax* and *np.argmin* for consistency +with *ndarray.argmax* and *ndarray.argmin*. The new parameter behaves exactly +as it does in those methods. + More system C99 complex functions detected and used ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All of the functions ``in complex.h`` are now detected. There are new |