diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-05-23 22:02:16 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-05-23 22:02:16 +0000 |
commit | 88e683bc3fa9497259cba637a23d60dc31f07bc6 (patch) | |
tree | 8266c5176eb2c17ad60d1e035a9db395d6673fcd /doc/release/2.0.0-notes.rst | |
parent | fc7afe0f14e31aa34e459952e4728bb4ec20daca (diff) | |
download | numpy-88e683bc3fa9497259cba637a23d60dc31f07bc6.tar.gz |
Update 2.0.0 release documentation to reflect changes in the Chebyshev and
Polynomial classes.
Diffstat (limited to 'doc/release/2.0.0-notes.rst')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index fc2faac2e..0ffa96f21 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -77,9 +77,12 @@ 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 + 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 - domain for the fit. The domain can be specified as 'default' to use the - Polynomial default domain [-1, 1]. + domain for the fit. The default Polynomial domain can be specified by using + [] as the domain value. polynomial.chebyshev -------------------- @@ -88,7 +91,10 @@ 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 + 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 - domain for the fit. The domain can be specified as 'default' to use the - Chebyshev default domain [-1, 1]. + domain for the fit. The default Chebyshev domain can be specified by using + [] as the domain value. |