summaryrefslogtreecommitdiff
path: root/numpy/matrixlib
Commit message (Collapse)AuthorAgeFilesLines
* ENH: missingdata: Make numpy.all follow the NA || True == True ruleMark Wiebe2011-08-271-9/+18
|
* ENH: missingdata: Change things to help scipy pass its testsMark Wiebe2011-08-271-10/+26
| | | | Improving the NumPy tests a bit to catch these errors better...
* DOC: minor documentation fixesPauli Virtanen2011-06-251-1/+1
|
* STY: Replace assert by assert_ in tests. There remain 124 uses ofCharles Harris2011-04-053-80/+80
| | | | assert in non-testing files that should be checked for correctness.
* STY: Update exception styles, trickier ones.Charles Harris2011-04-051-1/+1
|
* STY: Update exception style, easy ones.Charles Harris2011-04-051-4/+4
|
* ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new ↵Mark Wiebe2011-01-171-1/+1
| | | | | | | | iterator I also found that the tricky case of CopyAnyInto wasn't being triggered by the test suite, so added a new function ndarray.setasflat, which calls CopyAnyInto.
* DOC: wiki merge, matrlixlib and some ndarray methods.rgommers2010-07-312-13/+13
|
* ENH: core: add .dot() method to ndarrays; a.dot(b) == np.dot(a, b)Pauli Virtanen2010-04-301-2/+3
|
* 3K: matrixlib: adapt to changes in str.translatePauli Virtanen2010-02-211-14/+26
|
* DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittestCharles Harris2010-02-201-1/+1
| | | | | | | | | module. The fix should be good for Python >= 2.4 and used the following sed script: s/\<failUnless\>/assertTrue/g s/\<failIf\>/assertFalse/g s/\<failUnlessEqual\>/assertEqual/g s/\<failUnlessRaises\>/assertRaises/g
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-4/+4
|
* Docstring update: matrixlibPauli Virtanen2009-10-021-140/+526
|
* Rename matrx to matrixlib.David Cournapeau2009-09-188-0/+1142
I forgot to commit the name change suggested by Stefan. You need to clean build/install directory when updating to this version.