summaryrefslogtreecommitdiff
path: root/numpy/polynomial/polyutils.py
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Make mapdomain work for multidimensional arrays as advertized inCharles Harris2010-08-111-6/+7
| | | | the documentation. Fixes ticket #1554.
* more docstring updates from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-171-64/+173
|
* 3K: polynomial: exceptions module is removedPauli Virtanen2009-12-061-1/+1
|
* Small cleanups in polynomial modules.Charles Harris2009-11-281-6/+8
|
* Add any function for python < 2.5.Charles Harris2009-11-151-0/+9
|
* Add support for chebyshev series and polynomials.Charles Harris2009-11-141-0/+273
New modules chebyshev and polynomial are added. The new polynomial module is not compatible with the current polynomial support in numpy, but is much like the new chebyshev module. The most noticeable difference to most will be that coefficients are specified from low to high power, that the low level functions do *not* accept the Chebyshev and Polynomial classes as arguements, and that the Chebyshev and Polynomial classes include a domain. Mapping between domains is a linear substitution and the two classes can be converted one to the other, allowing, for instance, a Chebyshev series in one domain to be expanded as a polynomial in another domain. The new modules are not automatically imported into the numpy namespace, they must be explicitly brought in with a "import numpy.polynomial" statement.