Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Make linalg setup.py runnable under python3. | David Cournapeau | 2009-12-03 | 1 | -2/+2 | |
| | ||||||
* | first set of checkins from the doc editor | Jarrod Millman | 2009-11-13 | 1 | -19/+23 | |
| | ||||||
* | linalg: support '0-norm' (scipy ticket #1037) | Pauli Virtanen | 2009-11-06 | 2 | -2/+7 | |
| | ||||||
* | Docstring update: linalg | Pauli Virtanen | 2009-10-02 | 1 | -194/+554 | |
| | ||||||
* | Docstring updates, part 1 | Pauli Virtanen | 2009-10-02 | 1 | -9/+26 | |
| | ||||||
* | Rename matrx to matrixlib. | David Cournapeau | 2009-09-18 | 1 | -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 Cournapeau | 2009-09-16 | 1 | -1/+1 | |
| | ||||||
* | ENH: Fix some more uninitialized vars. | David Cournapeau | 2009-09-16 | 1 | -1/+1 | |
| | ||||||
* | add support for __array_prepare__ | Darren Dale | 2009-08-23 | 1 | -1/+1 | |
| | ||||||
* | Merge from doc wiki | Pauli Virtanen | 2009-06-19 | 1 | -1/+1 | |
| | ||||||
* | Fix eigenvalue tests, the eigenvalues needed sorting. | Charles Harris | 2009-03-27 | 1 | -8/+8 | |
| | | | | Fix test_nanmin_alnan_on_axis, use assert_array_equal. | |||||
* | Merge from the doc wiki | Pauli Virtanen | 2009-03-24 | 1 | -9/+22 | |
| | ||||||
* | Python 3000 fixes for 2to3 [patch by James Watson]. | Stefan van der Walt | 2009-03-02 | 1 | -1/+1 | |
| | ||||||
* | BUG: fix #786, bad exception for wrong order for linalg.norm. | David Cournapeau | 2009-03-02 | 3 | -6/+9 | |
| | ||||||
* | Fix norm tests for single prec. | David Cournapeau | 2009-03-02 | 1 | -11/+27 | |
| | ||||||
* | Abstract away dtype for norm test. | David Cournapeau | 2009-03-02 | 1 | -8/+14 | |
| | ||||||
* | rename check_empty method to test_, so that is is picked up by nose. | David Cournapeau | 2009-03-02 | 1 | -1/+1 | |
| | ||||||
* | TEST: add tests for norm from #763. | David Cournapeau | 2009-03-02 | 1 | -1/+41 | |
| | ||||||
* | Use new-style classes with multiple-inheritance to address bug in IronPython. | Stefan van der Walt | 2009-01-06 | 1 | -1/+1 | |
| | ||||||
* | ran reindent | Jarrod Millman | 2008-12-31 | 1 | -1/+1 | |
| | ||||||
* | Trailing spaces. | David Cournapeau | 2008-11-08 | 1 | -2/+2 | |
| | ||||||
* | Fix fortrab ABI mismatch test. | David Cournapeau | 2008-11-08 | 1 | -10/+11 | |
| | ||||||
* | Detect gfrotran/g77 mismatch. | David Cournapeau | 2008-11-08 | 1 | -1/+13 | |
| | ||||||
* | Start working on test to detect fortran compiler mismatch. | David Cournapeau | 2008-11-08 | 1 | -0/+35 | |
| | ||||||
* | Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵ | Pauli Virtanen | 2008-10-28 | 1 | -1/+1 | |
| | | | | they are still an improvement) | |||||
* | More unused vars tagged (lapack_lite). | David Cournapeau | 2008-10-08 | 1 | -18/+18 | |
| | ||||||
* | Rewrapped __all__ to conform with PEP8. | Alan McIntyre | 2008-09-18 | 1 | -11/+4 | |
| | | | | Removed unused imports. | |||||
* | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 2 | -143/+324 | |
| | ||||||
* | Remove add_configres function which did nothing... | David Cournapeau | 2008-07-31 | 1 | -2/+1 | |
| | ||||||
* | Removed unused private function _castCopyAndTranspose. | Alan McIntyre | 2008-07-23 | 1 | -8/+1 | |
| | ||||||
* | Added tests for eigenvalue/vector functions for Hermitian matrices.. | Alan McIntyre | 2008-07-14 | 1 | -0/+55 | |
| | ||||||
* | Simplify a bit more scons scripts. | David Cournapeau | 2008-07-09 | 1 | -8/+3 | |
| | ||||||
* | Use NumpyPythonExtension instead of DistutilsPythonExtension where possible. | David Cournapeau | 2008-07-09 | 1 | -3/+2 | |
| | ||||||
* | Use the implicit "import numpy as np" made available to all doctests instead | Alan McIntyre | 2008-07-05 | 1 | -40/+35 | |
| | | | | | of explicit imports or dependency on the local scope where the doctest is defined.. | |||||
* | Clean up test output such that a completely-passing test suite has no ↵ | Robert Kern | 2008-07-03 | 2 | -5/+1 | |
| | | | | extraneous output. | |||||
* | Restore old test framework classes. | Alan McIntyre | 2008-06-21 | 3 | -3/+3 | |
| | | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc. | |||||
* | Switched to use nose to run tests. Added test and bench functions to all ↵ | Alan McIntyre | 2008-06-17 | 3 | -30/+33 | |
| | | | | modules. | |||||
* | adapt numpy.linalg to new scons build_dir architecture. | David Cournapeau | 2008-06-12 | 2 | -29/+31 | |
| | ||||||
* | Merged revisions 5204-5257 via svnmerge from | David Cournapeau | 2008-06-07 | 1 | -7/+3 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://svn.scipy.org/svn/numpy/branches/cdavid ........ r5205 | cdavid | 2008-05-20 17:14:30 +0900 (Tue, 20 May 2008) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-5204" from http://svn.scipy.org/svn/numpy/trunk ........ r5206 | cdavid | 2008-05-20 17:17:27 +0900 (Tue, 20 May 2008) | 7 lines Current handling of bootstrapping is flawed: I should handle it at the distutils level, not at the scons level. This is the first step to detect bootstrapping at distutils level, and pass its state to scons through command line. ........ r5207 | cdavid | 2008-05-20 17:35:01 +0900 (Tue, 20 May 2008) | 1 line Fix typo when passing bootstrapping option to scons. ........ r5208 | cdavid | 2008-05-20 17:41:11 +0900 (Tue, 20 May 2008) | 5 lines Do not mess with __NUMPY_SETUP__ in scons scripts anymore: this is handled in numscons. ........ r5209 | cdavid | 2008-05-20 17:43:46 +0900 (Tue, 20 May 2008) | 1 line Forgot one file in lapack_lite when no LAPACK is available. ........ r5210 | cdavid | 2008-05-20 18:24:38 +0900 (Tue, 20 May 2008) | 1 line Handle fortran compiler on open-solaris ........ | |||||
| * | Forgot one file in lapack_lite when no LAPACK is available. | David Cournapeau | 2008-05-20 | 1 | -2/+2 | |
| | | ||||||
| * | Do not mess with __NUMPY_SETUP__ in scons scripts anymore: this is handled in | David Cournapeau | 2008-05-20 | 1 | -5/+1 | |
| | | | | | | | | | | numscons. | |||||
* | | Fix ordering assumption in regression test. | Charles Harris | 2008-05-21 | 1 | -2/+4 | |
|/ | ||||||
* | Fix math markup in docstrings. | Stefan van der Walt | 2008-05-19 | 1 | -4/+4 | |
| | ||||||
* | Merge docstrings from wiki. | Stefan van der Walt | 2008-05-14 | 1 | -7/+7 | |
| | ||||||
* | Keep singular values and eigenvalues as 1D arrays until the matrix indexing | Charles Harris | 2008-04-29 | 2 | -11/+7 | |
| | | | | | controversy is settled. This will also keep code that uses diag(ev), from breaking. | |||||
* | Fix python_xerbla for compilers that do not have inline strlen defined. | Stefan van der Walt | 2008-04-29 | 1 | -1/+2 | |
| | ||||||
* | Rename and reformat pythonxerbla. | Stefan van der Walt | 2008-04-28 | 3 | -35/+38 | |
| | ||||||
* | Fix test of lstsqr to work with matrix tests. | Charles Harris | 2008-04-27 | 2 | -5/+5 | |
| | | | | Fix lstsq | |||||
* | Add tests for matrix return types. | Charles Harris | 2008-04-27 | 2 | -9/+42 | |
| | | | | | 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 | 2 | -44/+69 | |
| | | | | | Use wrap to keep matrix environment intact. Base patch from nmb. |