[Numpy-svn] r8425 - trunk/doc/release

numpy-svn at scipy.org numpy-svn at scipy.org
Fri May 21 01:36:15 EDT 2010


Author: charris
Date: 2010-05-21 00:36:15 -0500 (Fri, 21 May 2010)
New Revision: 8425

Modified:
   trunk/doc/release/2.0.0-notes.rst
Log:
Note the changes in polynomial.polynomial and polynomial.chebyshev in
the release notes.

Modified: trunk/doc/release/2.0.0-notes.rst
===================================================================
--- trunk/doc/release/2.0.0-notes.rst	2010-05-21 05:36:13 UTC (rev 8424)
+++ trunk/doc/release/2.0.0-notes.rst	2010-05-21 05:36:15 UTC (rev 8425)
@@ -67,3 +67,28 @@
 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].
+




More information about the Numpy-svn mailing list