diff options
author | Stephan Hoyer <shoyer@climate.com> | 2015-01-03 18:37:33 +0200 |
---|---|---|
committer | Stephan Hoyer <shoyer@climate.com> | 2015-01-05 11:08:16 -0800 |
commit | 1b2d2e977d51414121548d4454afdf02d9def3b3 (patch) | |
tree | 4cdf43e2cbe8f2ab6df2f95183dfeb23f8e08de3 /doc/release/1.10.0-notes.rst | |
parent | 3ef77eea0d9c2cd76bc9b89b04a32f1322f842d5 (diff) | |
download | numpy-1b2d2e977d51414121548d4454afdf02d9def3b3.tar.gz |
ENH: add np.nanprod
This PR adds an implementation of `nanprod`.
The actual function is a two-liner adapted from `nansum`. Most of this PR
consists of documentation and tests (for which I took the opportunity to do
some consolidation).
A method with the same functionality exists in pandas, and I was surprised to
discover that it's not in numpy.
Diffstat (limited to 'doc/release/1.10.0-notes.rst')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index 7b473f3b9..3d008c597 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -11,6 +11,7 @@ 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. +* Addition of `nanprod` to the set of nanfunctions. Dropped Support |