Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Keep singular values and eigenvalues as 1D arrays until the matrix indexing | Charles Harris | 2008-04-29 | 1 | -7/+7 |
| | | | | | controversy is settled. This will also keep code that uses diag(ev), from breaking. | ||||
* | Fix test of lstsqr to work with matrix tests. | Charles Harris | 2008-04-27 | 1 | -4/+4 |
| | | | | Fix lstsq | ||||
* | Add tests for matrix return types. | Charles Harris | 2008-04-27 | 1 | -3/+4 |
| | | | | | Fix cond computations for matrices. lstsq is currently broken for matrices, will fix shortly. | ||||
* | Make functions in linalg.py accept nestes lists. | Charles Harris | 2008-04-27 | 1 | -36/+55 |
| | | | | | Use wrap to keep matrix environment intact. Base patch from nmb. | ||||
* | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 1 | -10/+10 |
| | |||||
* | Added function for computing condition number, with tests and docs; closes #622. | aarchiba | 2008-04-08 | 1 | -0/+38 |
| | |||||
* | Factor out matrix_multiply from defmatrix. Based on a patch by | Stefan van der Walt | 2008-04-06 | 1 | -1/+5 |
| | | | | Anne Archibald. | ||||
* | ran reindent | Jarrod Millman | 2008-02-08 | 1 | -47/+47 |
| | |||||
* | more docstring improvements from Pauli Virtanen | Jarrod Millman | 2007-12-29 | 1 | -12/+30 |
| | |||||
* | 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 |