summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* clean up unused imports and bad whitespaceTim Leslie2007-01-098-17/+10
|
* Fix segfault in N.float64, ticket #412.Travis Oliphant2007-01-091-2/+4
|
* Whitespace cleanup.Stefan van der Walt2007-01-0818-109/+99
|
* * Fix #410 by using the stable mergesort instead of the unstable default ↵Robert Kern2007-01-081-45/+147
| | | | | | | sort in setmember1d(). * Add some more information to the function docstrings. * Reduced the "See also" sections of the docstrings to point to the module instead of the full list of functions (some of which were not entirely relevant).
* fix for #407 and add unit test for itTim Leslie2007-01-082-2/+6
|
* add a docstring to nan_to_num. closes #406Tim Leslie2007-01-081-4/+8
|
* Fix tests for Boolean.Travis Oliphant2006-12-241-8/+8
|
* Fix typo in oldnumeric and add Rick White's improvement to histogram for ↵Travis Oliphant2006-12-141-1/+5
| | | | large arrays.
* Fix early return in polysub.Travis Oliphant2006-11-221-1/+1
|
* Fix early return in polyadd.Travis Oliphant2006-11-221-1/+1
|
* Coerce to floating point arrays in cov to avoid errors when integer arrays ↵Robert Kern2006-11-111-5/+5
| | | | are passed.
* Fix #369: windows returning invalid results for M=1Travis Oliphant2006-11-021-0/+16
|
* Apply #368Travis Oliphant2006-11-021-4/+4
|
* Fix vectorize bug ignoring otypes.Travis Oliphant2006-10-251-9/+18
|
* In ix_, do not modify shape of input array.Stefan van der Walt2006-10-231-1/+1
|
* Fix tests to run cleanly with new, tighter error handling.Tim Hochberg2006-10-192-0/+40
|
* Fix qr decomposition. The dimensions m,n were taken from the fortran ordered ↵Charles Harris2006-10-161-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 Oliphant2006-10-162-5/+5
| | | | finfo interface instead of MachAr.
* Change error exception to RankWarning.Charles Harris2006-10-161-19/+65
| | | | | | Add keyword argument full to get full fit info. Make 'always' the default of RankWarning. Improve documentation.
* 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
| | | | Make error message more informative.
* Scale the x vector in polyfit to improve condition of Vandermonde matrix.Charles Harris2006-10-141-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.
* Add roll function from ticket #293Travis Oliphant2006-10-131-1/+1
|
* Mention scaling in the polyfit docstring.Charles Harris2006-10-131-8/+13
|
* Fix mgrid for count of 1Travis Oliphant2006-10-131-5/+7
|
* Add a rcond parameter to the polyfit function and give it the double precisionCharles Harris2006-10-131-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.
* (no commit message)Robert Cimrman2006-10-121-7/+5
|
* modernized to use new numpy features, speed-up of unique1d, doc updateRobert Cimrman2006-10-121-75/+95
|
* Fix scimath.power for negative integer input.Travis Oliphant2006-10-111-0/+7
|
* Fix some name-space errors in scimath.Travis Oliphant2006-10-111-5/+5
|
* Fidget with average/mean docstrings.Stefan van der Walt2006-10-101-1/+1
|
* Simplify mean and average docstrings.Stefan van der Walt2006-10-101-7/+4
|
* Fix segfault in .imag for real array scalars. Be specific about infix ↵Travis Oliphant2006-10-101-1/+1
| | | | multiplication.
* Fix kron for multiple-dimensions. kron is defined so tile(b, s) is the same ↵Travis Oliphant2006-10-092-10/+30
| | | | as kron(ones(s,b.dtype), b)
* Kron is now N-dimensional, so remove rank check.Stefan van der Walt2006-10-071-16/+0
|
* Add test for insert.Stefan van der Walt2006-10-071-0/+7
|
* Close ticket #328.Stefan van der Walt2006-10-071-1/+1
|
* Fix kron to be N-dimensional.Travis Oliphant2006-10-071-10/+13
|
* Fix typo in tile.Stefan van der Walt2006-10-071-1/+1
|
* Add tests for tile and fix error.Travis Oliphant2006-10-072-2/+13
|
* Add tile to numpy and move repmat to matlib.pyTravis Oliphant2006-10-071-19/+54
|
* Fix ticket #325Travis Oliphant2006-10-071-9/+14
|
* Add tests for tickets #312, #322, for polynomial roots and for settingStefan van der Walt2006-10-061-0/+4
| | | | elements in object arrays.
* Fix ticket #323 --- problem with roots all zeros and all zero coefficients.Travis Oliphant2006-10-051-1/+5
|
* Fix up __array_interface__ getting and depth discovery for scalars.Travis Oliphant2006-10-051-2/+1
|
* Change unique1d's argument name from retindx to return_index.Stefan van der Walt2006-09-281-6/+8
|
* Don't copy arrays inside ix_Travis Oliphant2006-09-281-1/+1
|
* Sort only once in median.Stefan van der Walt2006-09-261-3/+2
|
* Fix back repr of arrays to not have quote unless flexible.Travis Oliphant2006-09-251-8/+8
|
* Fix doctests for new dtypeTravis Oliphant2006-09-241-8/+8
|