diff options
author | Jonathan Helmus <jjhelmus@gmail.com> | 2013-08-28 20:40:17 -0500 |
---|---|---|
committer | Jonathan Helmus <jjhelmus@gmail.com> | 2013-09-13 17:03:37 -0500 |
commit | 07cbe999f84be4d1b0a35fdb15b53cc17bc4341d (patch) | |
tree | 639b022431a0b3b6315d303507ce03ae1f656c9b /doc | |
parent | ad3f60156d244471ad86d57bb92b2b4e32c22324 (diff) | |
download | numpy-07cbe999f84be4d1b0a35fdb15b53cc17bc4341d.tar.gz |
ENH: percentile function with additional parameters and vecorization
The percentile function was enhanced by adding limit and interpolation
parameters to give it similar functionality to SciPy's stats.scoreatpercentile
function. In addition the function was vecorized along q and rewritten to
use the partition method for better performance.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.9.0-notes.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/release/1.9.0-notes.rst b/doc/release/1.9.0-notes.rst index 0b1ab77f1..84331651d 100644 --- a/doc/release/1.9.0-notes.rst +++ b/doc/release/1.9.0-notes.rst @@ -19,6 +19,8 @@ Future Changes Compatibility notes =================== +numpy.percentile returns an array instead of a list. + New Features ============ |