summaryrefslogtreecommitdiff
path: root/numpy/lib/polynomial.py
Commit message (Expand)AuthorAgeFilesLines
* BUG: Make polyder return a poly1d for the zeroeth order derivative whenCharles Harris2010-05-051-8/+9
* 3K: lib: implement __rtruediv__ for poly1dPauli Virtanen2010-02-211-0/+2
* 3K: lib: poly1d __div__ -> __truediv__, and fix its doctestsPauli Virtanen2010-02-211-0/+2
* BUG: Check input to poly for zero-dimensional arrays.Stefan van der Walt2010-02-081-2/+2
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-7/+19
* Docstring update: libPauli Virtanen2009-10-021-86/+227
* All non core regressions tests moved to their respective modules.David Cournapeau2009-09-161-2/+1
* Move finfo into core.David Cournapeau2009-09-161-2/+1
* Fix formatting of complex coefficients in poly1dPauli Virtanen2009-04-241-7/+17
* Fixed #1095: make polyint work well with object arraysPauli Virtanen2009-04-241-4/+3
* Merge from the doc wikiPauli Virtanen2009-03-241-1/+1
* Fix polyint to work correctly with float, complex, and int inputs.Charles Harris2009-03-091-8/+12
* Fix ticket #944.Charles Harris2009-03-091-2/+2
* Get lstsq and eigvals from numpy.linalg, not from numpy.dual. Addresses Scipy...Pauli Virtanen2008-12-131-27/+4
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ...Pauli Virtanen2008-10-281-10/+113
* Import documentation from doc wiki (part 1)Pauli Virtanen2008-10-271-1/+2
* Merge from documentation editor.Stefan van der Walt2008-08-051-128/+412
* Use the implicit "import numpy as np" made available to all doctests instead Alan McIntyre2008-07-051-2/+2
* Reduce numpy's import times by delaying a few time consuming imports to the p...Robert Kern2008-07-031-7/+1
* Use the implicit "import numpy as np" made available to all doctests instead ...Alan McIntyre2008-07-031-1/+0
* Clean up polyfit documentation.Charles Harris2008-03-151-38/+49
* Fix polyfit for 2D case and add test for same. Fixes ticket 697.Charles Harris2008-03-151-41/+68
* Fix string conversion of polynomial when leading coefficients areStefan van der Walt2007-08-061-5/+9
* Fix polygon division. Closes ticket #553.Stefan van der Walt2007-07-241-1/+1
* Fix polynomial comparison. Closes ticket #554.Stefan van der Walt2007-07-241-2/+2
* add __neg__ and __pos__ methods to poly1dcookedm2007-06-011-0/+6
* Add __iter__ method to poly1d so that list() on a poly1d doesn't go into an i...cookedm2007-05-311-0/+3
* Replace tabs with spaces (see ticket #470).Stefan van der Walt2007-03-221-4/+2
* Fix doctests.Stefan van der Walt2007-02-181-1/+1
* Fix docstrings for loading with DocFileSuite.Stefan van der Walt2007-02-181-7/+8
* Fix polymul bug.Stefan van der Walt2007-02-091-0/+1
* Fix ticket #439 --- poly1d objects can now be pickled because an AttributeErr...Travis Oliphant2007-01-301-1/+4
* clean up unused imports and bad whitespaceTim Leslie2007-01-091-0/+2
* Whitespace cleanup.Stefan van der Walt2007-01-081-1/+0
* Fix early return in polysub.Travis Oliphant2006-11-221-1/+1
* Fix early return in polyadd.Travis Oliphant2006-11-221-1/+1
* Fix qr decomposition. The dimensions m,n were taken from the fortran ordered ...Charles Harris2006-10-161-3/+3
* Fix finfo eps and huge to be array scalars of the appropriate type. And use ...Travis Oliphant2006-10-161-3/+3
* Change error exception to RankWarning.Charles Harris2006-10-161-19/+65
* Make sure order is an integerCharles Harris2006-10-151-1/+1
* Set rcond to precision of x as default.Charles Harris2006-10-151-2/+13
* Scale the x vector in polyfit to improve condition of Vandermonde matrix.Charles Harris2006-10-141-18/+48
* Mention scaling in the polyfit docstring.Charles Harris2006-10-131-8/+13
* Add a rcond parameter to the polyfit function and give it the double precisionCharles Harris2006-10-131-12/+25
* Fix ticket #323 --- problem with roots all zeros and all zero coefficients.Travis Oliphant2006-10-051-1/+5
* Fix uses of nonzero and add flatnonzeroTravis Oliphant2006-08-051-1/+1
* Fix defect #28Travis Oliphant2006-03-121-2/+2
* Add __eq__ and __ne__ to poly1dcookedm2006-02-281-0/+6
* Minor style improvements for polynomial.pycookedm2006-02-211-4/+7
* Fix bad use of .dtypeTravis Oliphant2006-01-151-2/+2