diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-07-18 04:01:19 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-07-18 04:01:19 +0000 |
commit | 4cff2fe33386c05dbf7aa2e22406faa38edfd81e (patch) | |
tree | 0b59f6450da3c7470168b1fbee41a3e17cde302e /doc/release | |
parent | d74911d5be8916efd3b6e6f0728c9685c6970608 (diff) | |
download | numpy-4cff2fe33386c05dbf7aa2e22406faa38edfd81e.tar.gz |
Merge branch 'wgt'
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/1.5.0-notes.rst (renamed from doc/release/2.0.0-notes.rst) | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/1.5.0-notes.rst index 68314c488..abccfdd2e 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/1.5.0-notes.rst @@ -1,5 +1,5 @@ ========================= -NumPy 2.0.0 Release Notes +NumPy 1.5.0 Release Notes ========================= @@ -73,30 +73,32 @@ 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. +* 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. -* A cutdeg method has been added to the Polynomial class. It operates like +* A trimdeg 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 default Polynomial domain can be specified by using - [] as the domain value. +* Polynomial.fit now uses None as the default domain for the fit. The default + Polynomial domain can be specified by using [] as the domain value. +* Weights can be used in both polyfit and Polynomial.fit +* A linspace method has been added to the Polynomial class to ease plotting. 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. +* 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. -* A cutdeg method has been added to the Chebyshev class. It operates like +* A trimdeg 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 default Chebyshev domain can be specified by using - [] as the domain value. +* Chebyshev.fit now uses None as the default domain for the fit. The default + Chebyshev domain can be specified by using [] as the domain value. +* Weights can be used in both chebfit and Chebyshev.fit +* A linspace method has been added to the Chebyshev class to ease plotting. histogram --------- |