Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | 2 | -5/+5 | |
| | | | | 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. | |||||
* | Add roll function from ticket #293 | Travis Oliphant | 2006-10-13 | 1 | -1/+1 | |
| | ||||||
* | Mention scaling in the polyfit docstring. | Charles Harris | 2006-10-13 | 1 | -8/+13 | |
| | ||||||
* | Fix mgrid for count of 1 | Travis Oliphant | 2006-10-13 | 1 | -5/+7 | |
| | ||||||
* | 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. | |||||
* | (no commit message) | Robert Cimrman | 2006-10-12 | 1 | -7/+5 | |
| | ||||||
* | modernized to use new numpy features, speed-up of unique1d, doc update | Robert Cimrman | 2006-10-12 | 1 | -75/+95 | |
| | ||||||
* | Fix scimath.power for negative integer input. | Travis Oliphant | 2006-10-11 | 1 | -0/+7 | |
| | ||||||
* | Fix some name-space errors in scimath. | Travis Oliphant | 2006-10-11 | 1 | -5/+5 | |
| | ||||||
* | Fidget with average/mean docstrings. | Stefan van der Walt | 2006-10-10 | 1 | -1/+1 | |
| | ||||||
* | Simplify mean and average docstrings. | Stefan van der Walt | 2006-10-10 | 1 | -7/+4 | |
| | ||||||
* | Fix segfault in .imag for real array scalars. Be specific about infix ↵ | Travis Oliphant | 2006-10-10 | 1 | -1/+1 | |
| | | | | multiplication. | |||||
* | Fix kron for multiple-dimensions. kron is defined so tile(b, s) is the same ↵ | Travis Oliphant | 2006-10-09 | 2 | -10/+30 | |
| | | | | as kron(ones(s,b.dtype), b) | |||||
* | Kron is now N-dimensional, so remove rank check. | Stefan van der Walt | 2006-10-07 | 1 | -16/+0 | |
| | ||||||
* | Add test for insert. | Stefan van der Walt | 2006-10-07 | 1 | -0/+7 | |
| | ||||||
* | Close ticket #328. | Stefan van der Walt | 2006-10-07 | 1 | -1/+1 | |
| | ||||||
* | Fix kron to be N-dimensional. | Travis Oliphant | 2006-10-07 | 1 | -10/+13 | |
| | ||||||
* | Fix typo in tile. | Stefan van der Walt | 2006-10-07 | 1 | -1/+1 | |
| | ||||||
* | Add tests for tile and fix error. | Travis Oliphant | 2006-10-07 | 2 | -2/+13 | |
| | ||||||
* | Add tile to numpy and move repmat to matlib.py | Travis Oliphant | 2006-10-07 | 1 | -19/+54 | |
| | ||||||
* | Fix ticket #325 | Travis Oliphant | 2006-10-07 | 1 | -9/+14 | |
| | ||||||
* | Add tests for tickets #312, #322, for polynomial roots and for setting | Stefan van der Walt | 2006-10-06 | 1 | -0/+4 | |
| | | | | elements in object arrays. | |||||
* | Fix ticket #323 --- problem with roots all zeros and all zero coefficients. | Travis Oliphant | 2006-10-05 | 1 | -1/+5 | |
| | ||||||
* | Fix up __array_interface__ getting and depth discovery for scalars. | Travis Oliphant | 2006-10-05 | 1 | -2/+1 | |
| | ||||||
* | Change unique1d's argument name from retindx to return_index. | Stefan van der Walt | 2006-09-28 | 1 | -6/+8 | |
| | ||||||
* | Don't copy arrays inside ix_ | Travis Oliphant | 2006-09-28 | 1 | -1/+1 | |
| | ||||||
* | Sort only once in median. | Stefan van der Walt | 2006-09-26 | 1 | -3/+2 | |
| | ||||||
* | Fix back repr of arrays to not have quote unless flexible. | Travis Oliphant | 2006-09-25 | 1 | -8/+8 | |
| | ||||||
* | Fix doctests for new dtype | Travis Oliphant | 2006-09-24 | 1 | -8/+8 | |
| | ||||||
* | Fix for #291 | Travis Oliphant | 2006-09-23 | 1 | -1/+1 | |
| | ||||||
* | Switch order of .put arguments to match the function call. Eliminate ↵ | Travis Oliphant | 2006-09-22 | 1 | -3/+3 | |
| | | | | .putmask as a method and make it only a function. | |||||
* | Fix docstring for delete. | Stefan van der Walt | 2006-09-22 | 1 | -2/+2 | |
| | ||||||
* | Remove sorted from unique1d. Add testall to test if level > 10. Remove ↵ | Travis Oliphant | 2006-09-20 | 1 | -1/+1 | |
| | | | | compiler warning. | |||||
* | Remove UserArray.py and dft sub-package. | Travis Oliphant | 2006-09-20 | 1 | -3/+0 | |
| | ||||||
* | Add tests to arraysetops for empty arrays. | Stefan van der Walt | 2006-09-19 | 1 | -0/+14 | |
| | ||||||
* | Support empty arrays in setxor1d and setdiff1d. | Stefan van der Walt | 2006-09-19 | 1 | -2/+8 | |
| | ||||||
* | Fix unique1d for empty sets. Closes r208. | Stefan van der Walt | 2006-09-19 | 1 | -6/+10 | |
| | ||||||
* | Add ediff1d support for empty arrays. | Stefan van der Walt | 2006-09-18 | 3 | -24/+25 | |
| | | | | | Fix ediff1d for to_begin or to_end = 0. Allow insert to operate on empty arrays. | |||||
* | Fix ticket #188 by returning the name of the dtype objects for data-type ↵ | Travis Oliphant | 2006-09-16 | 2 | -3/+5 | |
| | | | | objects without fields or sub-arrays that are in correct byte-order | |||||
* | Rename to histogramdd as original author said. | Travis Oliphant | 2006-09-15 | 2 | -11/+11 | |
| | ||||||
* | Clean up info(ndarray) | Travis Oliphant | 2006-09-15 | 1 | -11/+10 | |
| | ||||||
* | Don't deprecate c_. Use it as short-hand for a common case | Travis Oliphant | 2006-09-14 | 1 | -9/+7 | |
| | ||||||
* | Fix transpose implementation to work with higher dimensional arrays as well | Travis Oliphant | 2006-09-14 | 1 | -7/+14 | |
| | ||||||
* | Fix up r_ so you can specify the minimum number of dimensions to force ↵ | Travis Oliphant | 2006-09-14 | 3 | -9/+36 | |
| | | | | arrays to and allow alteration of the concatenation axis and whether or not to transpose 1d arrays | |||||
* | Add histogramnd and fix histogram2d | Travis Oliphant | 2006-09-14 | 4 | -45/+237 | |
| |