diff options
Diffstat (limited to 'doc/release/2.0.0-notes.rst')
-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]. + |