Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move matrix class into its own module. | David Cournapeau | 2009-09-16 | 1 | -677/+0 |
| | |||||
* | Fixed #1162: make matrix_power accept lists etc. as input | Pauli Virtanen | 2009-07-12 | 1 | -1/+2 |
| | |||||
* | Merge from doc wiki | Pauli Virtanen | 2009-06-19 | 1 | -0/+20 |
| | |||||
* | Add in-place power raising for matrices (#787). | David Cournapeau | 2009-03-02 | 1 | -0/+4 |
| | |||||
* | * added ddof to np.matrix.var (bug fix #861) | pierregm | 2008-11-24 | 1 | -1/+1 |
| | |||||
* | Import documentation from doc wiki (part 1) | Pauli Virtanen | 2008-10-27 | 1 | -0/+5 |
| | |||||
* | Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵ | Travis Oliphant | 2008-08-15 | 1 | -1/+1 |
| | | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes | ||||
* | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 1 | -27/+104 |
| | |||||
* | Removed matrix._get_truendim (unused). | Alan McIntyre | 2008-07-09 | 1 | -7/+0 |
| | |||||
* | Update doctests to use the implicit "import numpy as np" made available | Alan McIntyre | 2008-07-02 | 1 | -3/+1 |
| | | | | to all doctests. | ||||
* | Fixed imports for doctests. | Alan McIntyre | 2008-06-23 | 1 | -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 Walt | 2008-05-14 | 1 | -11/+17 |
| | |||||
* | Back-out matrix changes from trunk. This breaks some test which need to be ↵ | Travis Oliphant | 2008-05-13 | 1 | -2/+5 |
| | | | | fixed differently. | ||||
* | Remove un-needed attribute lookup in 1.2 | Travis Oliphant | 2008-05-07 | 1 | -1/+1 |
| | |||||
* | * Make matrices return 1-dimensional array on item selection for 1.2\n * ↵ | Travis Oliphant | 2008-05-07 | 1 | -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 Walt | 2008-04-25 | 1 | -7/+0 |
| | |||||
* | Hack to let x[0][0] return a scalar for matrices. | Stefan van der Walt | 2008-04-23 | 1 | -1/+8 |
| | |||||
* | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 1 | -10/+10 |
| | |||||
* | Documented and tested new behaviour of std and var on complex numbers. ↵ | aarchiba | 2008-04-07 | 1 | -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 by | Stefan van der Walt | 2008-04-06 | 1 | -34/+78 |
| | | | | Anne Archibald. | ||||
* | Fix missing mean for median calculation, missing dtype from defmatrix mean ↵ | Matthew Brett | 2008-02-13 | 1 | -2/+2 |
| | | | | signature | ||||
* | ran reindent | Jarrod Millman | 2008-02-08 | 1 | -8/+8 |
| | |||||
* | Improve docstrings | Travis Oliphant | 2007-12-28 | 1 | -102/+125 |
| | |||||
* | using faster string methods rather than deprecated string module | Jarrod Millman | 2007-10-29 | 1 | -4/+2 |
| | |||||
* | Add documentation for diagonal. | Charles Harris | 2007-05-13 | 1 | -0/+16 |
| | | | | Reformat documentation of sort, argsort, lexsort, and searchsorted. | ||||
* | Add/edit documentation for mean, std, var. | Charles Harris | 2007-05-12 | 1 | -0/+109 |
| | |||||
* | Fix errors involving matrix*sparse | Charles Harris | 2007-03-26 | 1 | -6/+6 |
| | |||||
* | Fix matrix-scalar multiplication. Add test for case Matrix*1d-vector | Charles Harris | 2007-03-24 | 1 | -6/+6 |
| | |||||
* | Fix matrix multiply to return error when has is a 1-D vector. Fixes ticket #473 | Charles Harris | 2007-03-24 | 1 | -4/+5 |
| | |||||
* | Use the out= parameter supplied by the user in defmatrix.sum() | Robert Kern | 2007-01-09 | 1 | -2/+1 |
| | |||||
* | clean up unused imports and bad whitespace | Tim Leslie | 2007-01-09 | 1 | -1/+1 |
| | |||||
* | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 1 | -14/+13 |
| | |||||
* | Add .A1 property to matrices to be equivalent to .__array__().ravel() | Travis Oliphant | 2006-10-23 | 1 | -1/+5 |
| | |||||
* | Add output arguments to a few more functions for consistency | Travis Oliphant | 2006-08-10 | 1 | -4/+4 |
| | |||||
* | Update C-API to add features needed for numarray compatibility. Output ↵ | Travis Oliphant | 2006-08-10 | 1 | -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 Oliphant | 2006-07-24 | 1 | -23/+24 |
| | |||||
* | Fix a couple of issues with object matrices | Travis Oliphant | 2006-07-19 | 1 | -0/+2 |
| | |||||
* | Fix sub-classing of matrices.. | Travis Oliphant | 2006-07-18 | 1 | -1/+1 |
| | |||||
* | Add library of matrix functions. | Travis Oliphant | 2006-07-07 | 1 | -3/+2 |
| | |||||
* | Remove .M .A .H attribute. Keep .T attribute as .transpose for >=2d. ↵ | Travis Oliphant | 2006-07-07 | 1 | -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 Oliphant | 2006-07-06 | 1 | -18/+7 |
| | |||||
* | For repr() of a matrix, add an extra space at the beginning of lines to line ↵ | cookedm | 2006-06-30 | 1 | -1/+8 |
| | | | | up columns. | ||||
* | Fix-up matrix indexing. | Travis Oliphant | 2006-06-28 | 1 | -10/+16 |
| | |||||
* | Apply patch #137 | Travis Oliphant | 2006-06-12 | 1 | -3/+3 |
| | |||||
* | Apply patch for ticket #83 to make matrices return scalars on axis=None ↵ | Travis Oliphant | 2006-05-10 | 1 | -65/+33 |
| | | | | reductions. | ||||
* | Bump up version number. Fix methods on matrices to preserve order. Add ↵ | Travis Oliphant | 2006-04-27 | 1 | -0/+78 |
| | | | | more scalar math (it now compiles). Add a missing API. | ||||
* | Changed fortran= keywords to order= keywords | Travis Oliphant | 2006-03-24 | 1 | -4/+4 |
| | |||||
* | Run reindent.py (script distributed with Python) over the source to remove ↵ | cookedm | 2006-03-10 | 1 | -12/+12 |
| | | | | extraneous whitespace | ||||
* | Apply Tim's code-checker tests except for white-space-only changes. | Travis Oliphant | 2006-03-06 | 1 | -3/+2 |
| | |||||
* | Undo last change. Misunderstood... | Travis Oliphant | 2006-02-27 | 1 | -4/+4 |
| |