Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | docstring improvements from Pauli Virtanen | Jarrod Millman | 2007-12-29 | 1 | -252/+478 | |
| | ||||||
* | Apply patch to fix ticket #557 (pinv causing error with empty arrays) | Travis Oliphant | 2007-09-21 | 1 | -1/+8 | |
| | ||||||
* | Add documentation for eigvals, eigvalsh, eig, and eigh. | Charles Harris | 2007-05-13 | 1 | -4/+165 | |
| | ||||||
* | whitespace cleanup | Tim Leslie | 2007-01-09 | 1 | -57/+59 | |
| | ||||||
* | clean up unused imports and bad whitespace | Tim Leslie | 2007-01-09 | 1 | -3/+3 | |
| | ||||||
* | Fix hanging eig computation when inf or nan values are in the array. This ↵ | Travis Oliphant | 2006-12-06 | 1 | -1/+8 | |
| | | | | check is already in SciPy. We need it in NumPy too for some LaPack calls. | |||||
* | Fix problem with dgesdd where the optimal work size is not computed correctly. | Travis Oliphant | 2006-11-02 | 1 | -9/+0 | |
| | ||||||
* | Fix qr decomposition. The dimensions m,n were taken from the fortran ordered ↵ | Charles Harris | 2006-10-16 | 1 | -21/+13 | |
| | | | | | | array instead of from the numpy ordered array and consequently were reversed. | |||||
* | Fix-up tensor solve and tensor inv and rename to match tensordot. | Travis Oliphant | 2006-10-13 | 1 | -25/+34 | |
| | ||||||
* | Add a rcond parameter to the polyfit function and give it the double precision | Charles Harris | 2006-10-13 | 1 | -26/+26 | |
| | | | | | | | | | 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. | |||||
* | Add solvetensor and invtensor | Travis Oliphant | 2006-10-13 | 1 | -2/+70 | |
| | ||||||
* | Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.product | Travis Oliphant | 2006-08-29 | 1 | -1/+1 | |
| | ||||||
* | Add axis arguments to various functions so as not to rely on the defaults. | Travis Oliphant | 2006-08-29 | 1 | -4/+4 | |
| | ||||||
* | Check for return value in linalg.det | Travis Oliphant | 2006-08-14 | 1 | -0/+5 | |
| | ||||||
* | Add qr decomposition to linalg | Travis Oliphant | 2006-08-10 | 1 | -0/+90 | |
| | ||||||
* | Move location of flatnonzero | Travis Oliphant | 2006-08-05 | 1 | -2/+2 | |
| | ||||||
* | Fix uses of nonzero and add flatnonzero | Travis Oliphant | 2006-08-05 | 1 | -1/+1 | |
| | ||||||
* | Revert change to lwork | Travis Oliphant | 2006-07-31 | 1 | -1/+1 | |
| | ||||||
* | Revert change and add better test for umath | Travis Oliphant | 2006-07-31 | 1 | -1/+1 | |
| | ||||||
* | Fix-up invalid casting back to real when complex result. | Travis Oliphant | 2006-07-31 | 1 | -0/+11 | |
| | ||||||
* | Fix missing return. | Travis Oliphant | 2006-07-25 | 1 | -0/+1 | |
| | ||||||
* | Add broadcasting behavior to random-number generators. Fix cholesky to keep ↵ | Travis Oliphant | 2006-07-25 | 1 | -1/+2 | |
| | | | | matrix return. | |||||
* | Fix ticket #178 which was an error whenever multiple buffers needed to be ↵ | Travis Oliphant | 2006-07-18 | 1 | -4/+4 | |
| | | | | used to cast. | |||||
* | numpy.linalg: fix bug where complex arrays weren't being returned. | cookedm | 2006-07-14 | 1 | -3/+4 | |
| | | | | Also improved test cases. | |||||
* | linalg routines will try to return their results as the same type as the ↵ | cookedm | 2006-07-14 | 1 | -158/+131 | |
| | | | | | | | | arguments. i.e., if you pass in a single or csingle array, that's what you get back. (Routines still use double-precision, though). Also some cleanups. | |||||
* | squash remaining uses of typecodes in linalg | cookedm | 2006-07-13 | 1 | -30/+30 | |
| | ||||||
* | fix bug in eig with complex solutions | cookedm | 2006-07-13 | 1 | -1/+1 | |
| | ||||||
* | Fix error in linalg.py | Travis Oliphant | 2006-07-06 | 1 | -1/+4 | |
| | ||||||
* | Fix buffered reduce, accumulate, and reduceat. | Travis Oliphant | 2006-07-06 | 1 | -1/+1 | |
| | ||||||
* | Convert linalg to use dtypes instead of typecodes | cookedm | 2006-07-04 | 1 | -36/+43 | |
| | ||||||
* | Add some documentation to linalg.py | Travis Oliphant | 2006-06-27 | 1 | -0/+27 | |
| | ||||||
* | Remove deprecated names from ma and tests. | Travis Oliphant | 2006-06-02 | 1 | -1/+1 | |
| | ||||||
* | Add 'q' to _array_kind and fix argmax which doesn't need to swap back axes. | Travis Oliphant | 2006-05-16 | 1 | -2/+2 | |
| | ||||||
* | change use of deprecated NewAxis to newaxis | Tim Leslie | 2006-03-18 | 1 | -3/+3 | |
| | ||||||
* | Fix-up name-spaces. | Travis Oliphant | 2006-03-15 | 1 | -1/+0 | |
| | ||||||
* | Fix-up name-spaces. | Travis Oliphant | 2006-03-15 | 1 | -5/+7 | |
| | ||||||
* | fix imports so that all tests pass | Tim Leslie | 2006-03-15 | 1 | -0/+1 | |
| | ||||||
* | Isolate Numeric compatibility to numpy.linalg.old | Travis Oliphant | 2006-03-15 | 1 | -49/+20 | |
| | ||||||
* | Committed much of ticket #36 | Travis Oliphant | 2006-03-15 | 1 | -21/+106 | |
| | ||||||
* | Changed the C-API by making the a.flags object a builtin object for speed. ↵ | Travis Oliphant | 2006-03-15 | 1 | -1/+3 | |
| | | | | Also fixed issues with linalg and matrices. | |||||
* | Run reindent.py (script distributed with Python) over the source to remove ↵ | cookedm | 2006-03-10 | 1 | -6/+4 | |
| | | | | extraneous whitespace | |||||
* | Added more debugging hooks to PackageLoader: NUMPY_IMPORT_DEBUG. Avoid ↵ | Pearu Peterson | 2006-02-24 | 1 | -3/+4 | |
| | | | | initiating Scipy/NumpyTest during imports. | |||||
* | Fix scalar-multiply dotblas error for non-double types. Preserve more ↵ | Travis Oliphant | 2006-02-23 | 1 | -4/+1 | |
| | | | | matrices through functions | |||||
* | Make matrices survive through more functions. | Travis Oliphant | 2006-02-23 | 1 | -10/+17 | |
| | ||||||
* | Fix _AIX bug and add UserArray for container class backward compatibility. | Travis Oliphant | 2006-02-23 | 1 | -0/+1 | |
| | ||||||
* | Fixed linalg.singular_value_decomposition. Should full_matrices=1 ?? | edschofield | 2006-02-22 | 1 | -4/+3 | |
| | ||||||
* | Fix a few more improper uses of .dtype attribute. | Travis Oliphant | 2006-01-21 | 1 | -1/+1 | |
| | ||||||
* | Moved .dtypedescr to .dtype; .dtype->.dtype.type; .dtypestr ->.dtype.str; ↵ | Travis Oliphant | 2006-01-15 | 1 | -6/+6 | |
| | | | | .dtypechar -> .dtype.char | |||||
* | Fixed import for undefined triu. | Pearu Peterson | 2006-01-06 | 1 | -1/+1 | |
| | ||||||
* | More numpy fixes... | Travis Oliphant | 2006-01-04 | 1 | -1/+1 | |
| |