Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Move finfo into core. | David Cournapeau | 2009-09-16 | 1 | -2/+1 | |
| | ||||||
* | Fix formatting of complex coefficients in poly1d | Pauli Virtanen | 2009-04-24 | 1 | -7/+17 | |
| | ||||||
* | Fixed #1095: make polyint work well with object arrays | Pauli Virtanen | 2009-04-24 | 1 | -4/+3 | |
| | ||||||
* | Merge from the doc wiki | Pauli Virtanen | 2009-03-24 | 1 | -1/+1 | |
| | ||||||
* | Fix polyint to work correctly with float, complex, and int inputs. | Charles Harris | 2009-03-09 | 1 | -8/+12 | |
| | | | | Fix polydiv to work correctly with float, complex, and int inputs. | |||||
* | Fix ticket #944. | Charles Harris | 2009-03-09 | 1 | -2/+2 | |
| | ||||||
* | Get lstsq and eigvals from numpy.linalg, not from numpy.dual. Addresses ↵ | Pauli Virtanen | 2008-12-13 | 1 | -27/+4 | |
| | | | | Scipy ticket #800 | |||||
* | Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵ | Pauli Virtanen | 2008-10-28 | 1 | -10/+113 | |
| | | | | they are still an improvement) | |||||
* | Import documentation from doc wiki (part 1) | Pauli Virtanen | 2008-10-27 | 1 | -1/+2 | |
| | ||||||
* | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 1 | -128/+412 | |
| | ||||||
* | Use the implicit "import numpy as np" made available to all doctests instead | Alan McIntyre | 2008-07-05 | 1 | -2/+2 | |
| | | | | | of explicit imports or dependency on the local scope where the doctest is defined.. | |||||
* | Reduce numpy's import times by delaying a few time consuming imports to the ↵ | Robert Kern | 2008-07-03 | 1 | -7/+1 | |
| | | | | point of actual use and global instantiations of finfo. Thanks to David Cournapeau for tracking down and fixing the import part of the problem. | |||||
* | Use the implicit "import numpy as np" made available to all doctests instead ↵ | Alan McIntyre | 2008-07-03 | 1 | -1/+0 | |
| | | | | | | | of an explicit import. Remove ">>>" from bartlett plotting example since it currently requires matplotlib. | |||||
* | Clean up polyfit documentation. | Charles Harris | 2008-03-15 | 1 | -38/+49 | |
| | | | | Add documentation for polyval. | |||||
* | Fix polyfit for 2D case and add test for same. Fixes ticket 697. | Charles Harris | 2008-03-15 | 1 | -41/+68 | |
| | ||||||
* | Fix string conversion of polynomial when leading coefficients are | Stefan van der Walt | 2007-08-06 | 1 | -5/+9 | |
| | | | | zero. Closes ticket #564. | |||||
* | Fix polygon division. Closes ticket #553. | Stefan van der Walt | 2007-07-24 | 1 | -1/+1 | |
| | ||||||
* | Fix polynomial comparison. Closes ticket #554. | Stefan van der Walt | 2007-07-24 | 1 | -2/+2 | |
| | ||||||
* | add __neg__ and __pos__ methods to poly1d | cookedm | 2007-06-01 | 1 | -0/+6 | |
| | ||||||
* | Add __iter__ method to poly1d so that list() on a poly1d doesn't go into an ↵ | cookedm | 2007-05-31 | 1 | -0/+3 | |
| | | | | infinite loop | |||||
* | Replace tabs with spaces (see ticket #470). | Stefan van der Walt | 2007-03-22 | 1 | -4/+2 | |
| | ||||||
* | Fix doctests. | Stefan van der Walt | 2007-02-18 | 1 | -1/+1 | |
| | ||||||
* | Fix docstrings for loading with DocFileSuite. | Stefan van der Walt | 2007-02-18 | 1 | -7/+8 | |
| | ||||||
* | Fix polymul bug. | Stefan van der Walt | 2007-02-09 | 1 | -0/+1 | |
| | ||||||
* | Fix ticket #439 --- poly1d objects can now be pickled because an ↵ | Travis Oliphant | 2007-01-30 | 1 | -1/+4 | |
| | | | | AttributeError is raised instead of the old KeyError when __getstate__ is accessed. | |||||
* | clean up unused imports and bad whitespace | Tim Leslie | 2007-01-09 | 1 | -0/+2 | |
| | ||||||
* | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 1 | -1/+0 | |
| | ||||||
* | Fix early return in polysub. | Travis Oliphant | 2006-11-22 | 1 | -1/+1 | |
| | ||||||
* | Fix early return in polyadd. | Travis Oliphant | 2006-11-22 | 1 | -1/+1 | |
| | ||||||
* | Fix qr decomposition. The dimensions m,n were taken from the fortran ordered ↵ | Charles Harris | 2006-10-16 | 1 | -3/+3 | |
| | | | | | | array instead of from the numpy ordered array and consequently were reversed. | |||||
* | Fix finfo eps and huge to be array scalars of the appropriate type. And use ↵ | Travis Oliphant | 2006-10-16 | 1 | -3/+3 | |
| | | | | finfo interface instead of MachAr. | |||||
* | Change error exception to RankWarning. | Charles Harris | 2006-10-16 | 1 | -19/+65 | |
| | | | | | | Add keyword argument full to get full fit info. Make 'always' the default of RankWarning. Improve documentation. | |||||
* | Make sure order is an integer | Charles Harris | 2006-10-15 | 1 | -1/+1 | |
| | ||||||
* | Set rcond to precision of x as default. | Charles Harris | 2006-10-15 | 1 | -2/+13 | |
| | | | | Make error message more informative. | |||||
* | Scale the x vector in polyfit to improve condition of Vandermonde matrix. | Charles Harris | 2006-10-14 | 1 | -18/+48 | |
| | | | | | | Throw error on rank reduction in polyfit. Error should probably be replace with a warning at some point. Add argument checks in polyfit. | |||||
* | Mention scaling in the polyfit docstring. | Charles Harris | 2006-10-13 | 1 | -8/+13 | |
| | ||||||
* | Add a rcond parameter to the polyfit function and give it the double precision | Charles Harris | 2006-10-13 | 1 | -12/+25 | |
| | | | | | | | | | default value that dgelsd uses (rcondx=-1) on the principle of least surprise. Values of rcond less than this can also be useful, so a warning message and a bit of explanation was added to the documentation. The default value used by lstsq was set to the default (-1), and rcond in pinv has a default value of 1e-15. | |||||
* | Fix ticket #323 --- problem with roots all zeros and all zero coefficients. | Travis Oliphant | 2006-10-05 | 1 | -1/+5 | |
| | ||||||
* | Fix uses of nonzero and add flatnonzero | Travis Oliphant | 2006-08-05 | 1 | -1/+1 | |
| | ||||||
* | Fix defect #28 | Travis Oliphant | 2006-03-12 | 1 | -2/+2 | |
| | ||||||
* | Add __eq__ and __ne__ to poly1d | cookedm | 2006-02-28 | 1 | -0/+6 | |
| | ||||||
* | Minor style improvements for polynomial.py | cookedm | 2006-02-21 | 1 | -4/+7 | |
| | ||||||
* | Fix bad use of .dtype | Travis Oliphant | 2006-01-15 | 1 | -2/+2 | |
| | ||||||
* | Remove deconvolve | Travis Oliphant | 2006-01-05 | 1 | -19/+0 | |
| | ||||||
* | Added i0 natively for kaiser window | Travis Oliphant | 2006-01-05 | 1 | -1/+1 | |
| | ||||||
* | Final commit before merge to trunk. | Travis Oliphant | 2006-01-04 | 1 | -1/+1 | |
| | ||||||
* | Fixed lib | Travis Oliphant | 2006-01-04 | 1 | -3/+3 | |
| | ||||||
* | Changed all references to scipy to numpy | Travis Oliphant | 2006-01-04 | 1 | -5/+5 | |
| | ||||||
* | Moving things.. | Travis Oliphant | 2006-01-04 | 1 | -0/+554 | |