summaryrefslogtreecommitdiff
path: root/numpy/linalg/linalg.py
Commit message (Collapse)AuthorAgeFilesLines
...
* STY: Update exception style, easy ones.Charles Harris2011-04-051-17/+17
|
* DOC: commit some more fixes from the doc wiki.rgommers2011-03-031-9/+9
|
* DOC: core: Document the new einsum functionMark Wiebe2011-01-241-1/+1
|
* BUG: linalg: lstsq should always return real residuals (#937)Pauli Virtanen2010-10-101-11/+24
|
* DOC: merge wiki edits for module linalg.rgommers2010-06-021-72/+75
|
* ENH: linalg: convert non-native endian arrays to native-endian before ↵Pauli Virtanen2010-05-111-0/+22
| | | | handing them to lapack_lite
* ENH: Do some housekeeping for the newly added slogdet function.Charles Harris2010-05-051-0/+2
|
* ENH: Add slogdet to the linalg module. The patch is from njs withCharles Harris2010-05-051-11/+77
| | | | slogdet substituted for sign_log_det. Closes ticket #1402.
* 3K: linalg: fix integer division issue and testsPauli Virtanen2010-02-211-1/+1
|
* 3K: linalg: fix some str/bytes issuesPauli Virtanen2010-02-201-20/+30
|
* more docstring updates from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-171-20/+24
|
* ENH - added matrix_rank function to linalgMatthew Brett2009-12-221-2/+63
|
* first set of checkins from the doc editorJarrod Millman2009-11-131-19/+23
|
* linalg: support '0-norm' (scipy ticket #1037)Pauli Virtanen2009-11-061-2/+5
|
* Docstring update: linalgPauli Virtanen2009-10-021-194/+554
|
* Docstring updates, part 1Pauli Virtanen2009-10-021-9/+26
|
* Rename matrx to matrixlib.David Cournapeau2009-09-181-1/+1
| | | | | I forgot to commit the name change suggested by Stefan. You need to clean build/install directory when updating to this version.
* Move matrix class into its own module.David Cournapeau2009-09-161-1/+1
|
* add support for __array_prepare__Darren Dale2009-08-231-1/+1
|
* Merge from doc wikiPauli Virtanen2009-06-191-1/+1
|
* Merge from the doc wikiPauli Virtanen2009-03-241-9/+22
|
* BUG: fix #786, bad exception for wrong order for linalg.norm.David Cournapeau2009-03-021-0/+4
|
* ran reindentJarrod Millman2008-12-311-1/+1
|
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-1/+1
| | | | they are still an improvement)
* Rewrapped __all__ to conform with PEP8.Alan McIntyre2008-09-181-11/+4
| | | | Removed unused imports.
* Merge from documentation editor.Stefan van der Walt2008-08-051-143/+281
|
* Removed unused private function _castCopyAndTranspose.Alan McIntyre2008-07-231-8/+1
|
* Use the implicit "import numpy as np" made available to all doctests instead Alan McIntyre2008-07-051-40/+35
| | | | | of explicit imports or dependency on the local scope where the doctest is defined..
* Fix math markup in docstrings.Stefan van der Walt2008-05-191-4/+4
|
* Merge docstrings from wiki.Stefan van der Walt2008-05-141-7/+7
|
* Keep singular values and eigenvalues as 1D arrays until the matrix indexingCharles Harris2008-04-291-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 Harris2008-04-271-4/+4
| | | | Fix lstsq
* Add tests for matrix return types.Charles Harris2008-04-271-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 Harris2008-04-271-36/+55
| | | | | Use wrap to keep matrix environment intact. Base patch from nmb.
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-201-10/+10
|
* Added function for computing condition number, with tests and docs; closes #622.aarchiba2008-04-081-0/+38
|
* Factor out matrix_multiply from defmatrix. Based on a patch byStefan van der Walt2008-04-061-1/+5
| | | | Anne Archibald.
* ran reindentJarrod Millman2008-02-081-47/+47
|
* more docstring improvements from Pauli VirtanenJarrod Millman2007-12-291-12/+30
|
* docstring improvements from Pauli VirtanenJarrod Millman2007-12-291-252/+478
|
* Apply patch to fix ticket #557 (pinv causing error with empty arrays)Travis Oliphant2007-09-211-1/+8
|
* Add documentation for eigvals, eigvalsh, eig, and eigh.Charles Harris2007-05-131-4/+165
|
* whitespace cleanupTim Leslie2007-01-091-57/+59
|
* clean up unused imports and bad whitespaceTim Leslie2007-01-091-3/+3
|
* Fix hanging eig computation when inf or nan values are in the array. This ↵Travis Oliphant2006-12-061-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 Oliphant2006-11-021-9/+0
|
* Fix qr decomposition. The dimensions m,n were taken from the fortran ordered ↵Charles Harris2006-10-161-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 Oliphant2006-10-131-25/+34
|
* Add a rcond parameter to the polyfit function and give it the double precisionCharles Harris2006-10-131-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 invtensorTravis Oliphant2006-10-131-2/+70
|