diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-06-07 03:43:19 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-06-07 03:43:19 +0000 |
commit | 0db76715c5f019222db48cc28a6a49d086a8a939 (patch) | |
tree | feab8bcb1f79bbc31a3fd43c38466cf6874bffd5 /doc/release/2.0.0-notes.rst | |
parent | 66e3231baaf2181abeafc4d37b8ad5272728ff64 (diff) | |
download | numpy-0db76715c5f019222db48cc28a6a49d086a8a939.tar.gz |
CHG: Rename reduce method in polytemplate to cutdeg. Reduce is just too
much like a ufunc and a bit vague.
Diffstat (limited to 'doc/release/2.0.0-notes.rst')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index fb7bbc43e..68314c488 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -77,7 +77,7 @@ polynomial.polynomial derivations is a non-negative integer. The number 0 is a valid value for both functions. * A degree method has been added to the Polynomial class. -* A reduce method has been added to the Polynomial class. It operates like +* A cutdeg method has been added to the Polynomial class. It operates like truncate except that the argument is the desired degree of the result, not the number of coefficients. * The fit class function of the Polynomial class now uses None as the default @@ -91,7 +91,7 @@ polynomial.chebyshev derivations is a non-negative integer. The number 0 is a valid value for both functions. * A degree method has been added to the Chebyshev class. -* A reduce method has been added to the Chebyshev class. It operates like +* A cutdeg method has been added to the Chebyshev class. It operates like truncate except that the argument is the desired degree of the result, not the number of coefficients. * The fit class function of the Chebyshev class now uses None as the default |