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

numpy-svn at scipy.org numpy-svn at scipy.org
Sun May 23 18:02:16 EDT 2010


Author: charris
Date: 2010-05-23 17:02:16 -0500 (Sun, 23 May 2010)
New Revision: 8430

Modified:
   trunk/doc/release/2.0.0-notes.rst
Log:
Update 2.0.0 release documentation to reflect changes in the Chebyshev and
Polynomial classes.

Modified: trunk/doc/release/2.0.0-notes.rst
===================================================================
--- trunk/doc/release/2.0.0-notes.rst	2010-05-23 22:02:13 UTC (rev 8429)
+++ trunk/doc/release/2.0.0-notes.rst	2010-05-23 22:02:16 UTC (rev 8430)
@@ -77,9 +77,12 @@
   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 @@
   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.
 




More information about the Numpy-svn mailing list