summaryrefslogtreecommitdiff
path: root/numpy/core/defmatrix.py
Commit message (Collapse)AuthorAgeFilesLines
* Move matrix class into its own module.David Cournapeau2009-09-161-677/+0
|
* Fixed #1162: make matrix_power accept lists etc. as inputPauli Virtanen2009-07-121-1/+2
|
* Merge from doc wikiPauli Virtanen2009-06-191-0/+20
|
* Add in-place power raising for matrices (#787).David Cournapeau2009-03-021-0/+4
|
* * added ddof to np.matrix.var (bug fix #861)pierregm2008-11-241-1/+1
|
* Import documentation from doc wiki (part 1)Pauli Virtanen2008-10-271-0/+5
|
* Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵Travis Oliphant2008-08-151-1/+1
| | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes
* Merge from documentation editor.Stefan van der Walt2008-08-051-27/+104
|
* Removed matrix._get_truendim (unused).Alan McIntyre2008-07-091-7/+0
|
* Update doctests to use the implicit "import numpy as np" made available Alan McIntyre2008-07-021-3/+1
| | | | to all doctests.
* Fixed imports for doctests.Alan McIntyre2008-06-231-3/+4
| | | | | Removed ">>>" from sample code in defmatrix.py:bmat that was intended only as an example, not as a doctest.
* Merge docstrings from wiki.Stefan van der Walt2008-05-141-11/+17
|
* Back-out matrix changes from trunk. This breaks some test which need to be ↵Travis Oliphant2008-05-131-2/+5
| | | | fixed differently.
* Remove un-needed attribute lookup in 1.2Travis Oliphant2008-05-071-1/+1
|
* * Make matrices return 1-dimensional array on item selection for 1.2\n * ↵Travis Oliphant2008-05-071-5/+2
| | | | Remove (now un-needed) tolist method from matrices\n * For ticket #551, copy data if start of memory is not aligned on itemsize location in optimized blas wrapper.
* Revert x[0][0] hack.Stefan van der Walt2008-04-251-7/+0
|
* Hack to let x[0][0] return a scalar for matrices.Stefan van der Walt2008-04-231-1/+8
|
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-201-10/+10
|
* Documented and tested new behaviour of std and var on complex numbers. ↵aarchiba2008-04-071-11/+22
| | | | Added ddof argument and its documentation to the std and var methods of matrix. Documented ddof for std and var methods of ma. Note that stdu and varu in ma still have the old, peculiar, behaviour for complex values.
* Factor out matrix_multiply from defmatrix. Based on a patch byStefan van der Walt2008-04-061-34/+78
| | | | Anne Archibald.
* Fix missing mean for median calculation, missing dtype from defmatrix mean ↵Matthew Brett2008-02-131-2/+2
| | | | signature
* ran reindentJarrod Millman2008-02-081-8/+8
|
* Improve docstringsTravis Oliphant2007-12-281-102/+125
|
* using faster string methods rather than deprecated string moduleJarrod Millman2007-10-291-4/+2
|
* Add documentation for diagonal.Charles Harris2007-05-131-0/+16
| | | | Reformat documentation of sort, argsort, lexsort, and searchsorted.
* 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 ↵Travis Oliphant2006-08-101-20/+20
| | | | argument added for several functions and clipmode argument added for a few others.
* 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. ↵Travis Oliphant2006-07-071-4/+19
| | | | Creates 2-d from 1-d and returns self for 0-d. Fix-up flag-checking when stride 0 is coupled with dim == 1
* 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
| | | | up columns.
* 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 ↵Travis Oliphant2006-05-101-65/+33
| | | | reductions.
* Bump up version number. Fix methods on matrices to preserve order. Add ↵Travis Oliphant2006-04-271-0/+78
| | | | more scalar math (it now compiles). Add a missing API.
* Changed fortran= keywords to order= keywordsTravis Oliphant2006-03-241-4/+4
|
* Run reindent.py (script distributed with Python) over the source to remove ↵cookedm2006-03-101-12/+12
| | | | extraneous whitespace
* 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
|