diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-05-21 05:36:15 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-05-21 05:36:15 +0000 |
commit | 894665b34accfde33581a1cca96ed9e8596fd202 (patch) | |
tree | 12dfa1afb0b9ff0d0d4ba19804bf92fe6bc00248 /doc | |
parent | 082e86f7461f066f4a4e48191d44305f47860b55 (diff) | |
download | numpy-894665b34accfde33581a1cca96ed9e8596fd202.tar.gz |
Note the changes in polynomial.polynomial and polynomial.chebyshev in
the release notes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index a984a5deb..fc2faac2e 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -67,3 +67,28 @@ ndarrayobject.h. This allows users to include array-related types and enumerations without needing to concern themselves with the macro expansions and their side- effects. +Changes +======= + +polynomial.polynomial +--------------------- + +* The polyint and polyder functions now check that the specified number integrations or + 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. +* 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]. + +polynomial.chebyshev +-------------------- + +* The chebint and chebder functions now check that the specified number integrations or + 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. +* 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]. + |