summaryrefslogtreecommitdiff
path: root/numpy/linalg
Commit message (Collapse)AuthorAgeFilesLines
* 2to3: Use modern exception syntax.Charles Harris2013-02-261-1/+1
| | | | Example: except ValueError,msg: -> except ValueError as msg:
* DEP: Remove scons related files and code.Charles Harris2013-01-133-44/+0
| | | | | | | | | This removes files and code supporting scons builds. After this change numpy will only support builds using distutils or bento. The removal of scons has been discussed on the list several times and a decision has been made that scons support is no longer needed. This was originally discussed for numpy 1.7 and because the distutils and bento methods are still available we are skipping the usual deprecation period.
* Fix typo in SVD usage exampleVladimir Rutsky2013-01-121-1/+1
|
* Fixed parenthesis typoGuillaume Gay2012-10-221-1/+1
|
* Taking njsmith comment into account Guillaume Gay2012-10-221-2/+2
|
* Correct `linalg.solve` doc stringGuillaume Gay2012-10-221-2/+2
| | | Fixes issue 2692
* Use PyMODINIT_FUNC and update docs accordingly.cgohlke2012-09-021-1/+1
| | | | See https://github.com/scipy/scipy/pull/279
* BUG: change default threshold for matrix_rankMatthew Brett2012-07-142-20/+60
| | | | | | | The default tolerance threshold for matrix_rank was passing as full rank some matrices that were numerically rank deficient. This commit changes the default tolerance to match the algorithm in MATLAB and Numerical recipes.
* DOC: merge doc wiki edits. A number of small edits in linalg and lib.Ralf Gommers2012-07-071-40/+41
|
* WRN: Fix some compiler warnings.Charles Harris2012-04-061-1/+1
|
* UPD: Update files for versioned deprecation.Charles Harris2012-04-061-1/+1
|
* UPD: Make lapack_litemodule.c use non-deprecated macros/functions.Charles Harris2012-04-061-11/+16
|
* BUG: native but not '=' byte order error in lapackMatthew Brett2012-03-172-2/+23
| | | | | | The check_object call in lapack_litemodule was checking if the passed array was of byteorder '=' or '|', but this check failed for arrays of specified native byte order ('<' on little-endian).
* PY3: Fix FindDependenciesLdd "ResourceWarning: unclosed file".Charles Harris2012-03-121-1/+2
|
* DOC: merge wiki doc edits.Ralf Gommers2012-03-031-0/+1
|
* UPD: Various fixes, Remove #define NPY_NO_PREFIX from files in core.Charles Harris2012-02-051-1/+1
|
* UPD: Use prefixed macros in lapack_litemodule.c.Charles Harris2012-02-041-9/+9
| | | | Also included ndarrayobject.h instead of noprefix.h.
* STY: linalg - replace macros in old_defines.h with new.Charles Harris2012-02-041-69/+69
|
* REF: use new API for higher level builder reuse.David Cournapeau2011-08-291-4/+3
|
* REF: use new hook signature.David Cournapeau2011-08-291-1/+1
|
* REF: define hook file locally.David Cournapeau2011-08-291-0/+2
|
* ENH: update to last bento.David Cournapeau2011-08-291-2/+2
|
* ENH: remove temporary hacks for recurse path settings.David Cournapeau2011-08-291-12/+2
|
* ENH: add fft/random support.David Cournapeau2011-08-291-3/+2
|
* FEAT: add numpy.linalg.David Cournapeau2011-08-292-0/+46
|
* DOC: minor documentation fixesPauli Virtanen2011-06-251-2/+2
|
* STY: Cleanup test_linalg a bit.Charles Harris2011-05-101-22/+42
|
* TST: Add test for QR on empty arraySkipper Seabold2011-05-101-0/+5
|
* BUG: Add not empty check to linalg.qrSkipper Seabold2011-05-101-0/+1
|
* BUG: linalg: Update the rwork size in the call to zgesdd to reflect a ↵Jason Grout2011-04-261-1/+2
| | | | | | documentation bugfix in Lapack SVN revision 729. See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=1779
* STY: Replace assert by assert_ in tests. There remain 124 uses ofCharles Harris2011-04-051-8/+8
| | | | assert in non-testing files that should be checked for correctness.
* STY: Fix up some two line old-style exceptions.Charles Harris2011-04-051-4/+4
|
* STY: Update exception styles, trickier ones.Charles Harris2011-04-051-4/+4
|
* STY: Update exception style, easy ones.Charles Harris2011-04-051-17/+17
|
* STY: Replace remaining old style classes with classes subclassing object.Charles Harris2011-04-051-2/+2
|
* STY: Replace old style classes in tests with classes subclassing object.Charles Harris2011-04-052-4/+4
|
* BUG: Python 2.4 doesn't accept the construction class foo():Charles Harris2011-04-051-1/+1
|
* BUG: fix tests in test_linalg.py. Do not subclass from TestCase.Ralf Gommers2011-04-031-6/+6
|
* 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-102-14/+104
|
* 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-112-0/+31
| | | | handing them to lapack_lite
* BUG: linalg: check array byte order before passing it to lapack_lite (fixes ↵Pauli Virtanen2010-05-111-0/+6
| | | | #1482)
* 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-053-11/+97
| | | | slogdet substituted for sign_log_det. Closes ticket #1402.
* DEP: Fix one more deprecated unittest function.Charles Harris2010-02-211-1/+1
|
* 3K: linalg: fix integer division issue and testsPauli Virtanen2010-02-212-2/+4
|
* 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
|