summaryrefslogtreecommitdiff
path: root/numpy/core/defmatrix.py
Commit message (Expand)AuthorAgeFilesLines
* using faster string methods rather than deprecated string moduleJarrod Millman2007-10-291-4/+2
* Add documentation for diagonal.Charles Harris2007-05-131-0/+16
* Add/edit documentation for mean, std, var.Charles Harris2007-05-121-0/+109
* Fix errors involving matrix*sparseCharles Harris2007-03-261-6/+6
* Fix matrix-scalar multiplication. Add test for case Matrix*1d-vectorCharles Harris2007-03-241-6/+6
* Fix matrix multiply to return error when has is a 1-D vector. Fixes ticket #473Charles Harris2007-03-241-4/+5
* Use the out= parameter supplied by the user in defmatrix.sum()Robert Kern2007-01-091-2/+1
* clean up unused imports and bad whitespaceTim Leslie2007-01-091-1/+1
* Whitespace cleanup.Stefan van der Walt2007-01-081-14/+13
* Add .A1 property to matrices to be equivalent to .__array__().ravel()Travis Oliphant2006-10-231-1/+5
* Add output arguments to a few more functions for consistencyTravis Oliphant2006-08-101-4/+4
* Update C-API to add features needed for numarray compatibility. Output argum...Travis Oliphant2006-08-101-20/+20
* Fix matrix getitem to return column matrices when appropriate.Travis Oliphant2006-07-241-23/+24
* Fix a couple of issues with object matricesTravis Oliphant2006-07-191-0/+2
* Fix sub-classing of matrices..Travis Oliphant2006-07-181-1/+1
* Add library of matrix functions.Travis Oliphant2006-07-071-3/+2
* Remove .M .A .H attribute. Keep .T attribute as .transpose for >=2d. Create...Travis Oliphant2006-07-071-4/+19
* Add .A, .H, .T, .M attributes to the ndarray.Travis Oliphant2006-07-061-18/+7
* For repr() of a matrix, add an extra space at the beginning of lines to line ...cookedm2006-06-301-1/+8
* Fix-up matrix indexing.Travis Oliphant2006-06-281-10/+16
* Apply patch #137Travis Oliphant2006-06-121-3/+3
* Apply patch for ticket #83 to make matrices return scalars on axis=None reduc...Travis Oliphant2006-05-101-65/+33
* Bump up version number. Fix methods on matrices to preserve order. Add more...Travis Oliphant2006-04-271-0/+78
* Changed fortran= keywords to order= keywordsTravis Oliphant2006-03-241-4/+4
* Run reindent.py (script distributed with Python) over the source to remove ex...cookedm2006-03-101-12/+12
* Apply Tim's code-checker tests except for white-space-only changes.Travis Oliphant2006-03-061-3/+2
* Undo last change. Misunderstood...Travis Oliphant2006-02-271-4/+4
* Don't check scalars in matrix mul. There is fast code for them in dotblas.Travis Oliphant2006-02-271-4/+4
* More judicious calling of dot() from matrix.__mul__edschofield2006-02-271-2/+6
* Faster return.Travis Oliphant2006-02-241-0/+3
* Don't allow matrices larger than ndim=2Travis Oliphant2006-02-241-0/+7
* Fixed orientation of matrix.sum(axis=1), added unit testedschofield2006-02-171-0/+11
* Add Paulo's improvements to _dotblas.c and don't always require contiguous.Travis Oliphant2006-01-171-37/+3
* Minor renaming.Travis Oliphant2006-01-151-5/+5
* Speed up matrix-vector calculations using matrix class.Travis Oliphant2006-01-151-6/+41
* Moved .dtypedescr to .dtype; .dtype->.dtype.type; .dtypestr ->.dtype.str; .dt...Travis Oliphant2006-01-151-6/+6
* Fixed up errors..Travis Oliphant2006-01-061-1/+4
* Added new feature to .view method so that if the argument is a sub-type of th...Travis Oliphant2006-01-061-5/+8
* Added i0 natively for kaiser windowTravis Oliphant2006-01-051-1/+1
* Made matrix tests work.Travis Oliphant2006-01-051-1/+1
* More numpy fixes...Travis Oliphant2006-01-041-0/+272