Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | extras : dropped the m prefix in mediff1d, mvander, mpolyfit | pierregm | 2008-05-14 | 5 | -23/+37 |
| | | | | mrecords: fixed __setitem__ to update the mask if needed. | ||||
* | Restore change to docstring overwritten by wiki merge. | Stefan van der Walt | 2008-05-14 | 1 | -2/+2 |
| | |||||
* | Merge docstrings from wiki. | Stefan van der Walt | 2008-05-14 | 3 | -25/+85 |
| | |||||
* | the trunk is still cooking 1.1 | Jarrod Millman | 2008-05-14 | 1 | -1/+1 |
| | |||||
* | extras: introduced mvander and mpolyfit | pierregm | 2008-05-13 | 2 | -85/+190 |
| | |||||
* | Back-out matrix changes from trunk. This breaks some test which need to be ↵ | Travis Oliphant | 2008-05-13 | 1 | -2/+5 |
| | | | | fixed differently. | ||||
* | Fix ticket #791. | Travis Oliphant | 2008-05-13 | 4 | -7/+24 |
| | |||||
* | Fix reST markup. | Stefan van der Walt | 2008-05-12 | 1 | -3/+9 |
| | |||||
* | power : fixed a bug when a scalar is the first argument | pierregm | 2008-05-12 | 2 | -7/+35 |
| | | | | | MaskedArray.__pow__ : call power MaskedArray.__ipow__: works in place. Note that the _data part gets "fixed" (NaNs/Infs set to fill_value) | ||||
* | core : power : use the quick-and-dirty approach: compute everything and mask ↵ | pierregm | 2008-05-12 | 2 | -15/+42 |
| | | | | | | | afterwards : MaskedArray._update_from(obj) : ensure that _baseclass is a ndarray if obj wasn't one already : introduced clip in the namespace, just for convenience | ||||
* | Use EquivTypes instead of equality testing for data-type comparison. | Travis Oliphant | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | Break long line. | Charles Harris | 2008-05-10 | 1 | -288/+303 |
| | | | | | Reformat a bit. Remove trailing whitespace. | ||||
* | Add the out= argument to the clip() function to bring it in line with the ↵ | Robert Kern | 2008-05-10 | 2 | -6/+34 |
| | | | | .clip() method. | ||||
* | core : power : mask all negative values when the exponent (b) doesn't ↵ | pierregm | 2008-05-09 | 2 | -3/+7 |
| | | | | satisfy b==b.astype(int) | ||||
* | core : power : mask all negative values when the exponent (b) doesn't ↵ | pierregm | 2008-05-09 | 2 | -6/+7 |
| | | | | satisfy (abs(b-int(b))<np.finfo(float).precision) | ||||
* | Moved docstrings to add_newdoc.py; added docstring for the class as a whole ↵ | aarchiba | 2008-05-09 | 2 | -170/+216 |
| | | | | which describes __call__. | ||||
* | Docstrings for ufunc methods add, reduce, outer, and the arcane reduceat. | aarchiba | 2008-05-09 | 1 | -4/+166 |
| | |||||
* | Test for ticket #551 part of r5140 | Pauli Virtanen | 2008-05-08 | 1 | -0/+8 |
| | |||||
* | Additional tests of matrix indexing. | aarchiba | 2008-05-08 | 1 | -3/+31 |
| | |||||
* | Add some tests for scalar indexing, tolist(), and fancy indexing. | Charles Harris | 2008-05-08 | 1 | -0/+29 |
| | |||||
* | 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 | 3 | -13/+20 |
| | | | | 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. | ||||
* | core : prevent power to mask negative values when it should not | pierregm | 2008-05-07 | 2 | -4/+10 |
| | |||||
* | trunk open for 1.2 development | Jarrod Millman | 2008-05-07 | 1 | -1/+1 |
| | |||||
* | core : force .compressed() to return a type(_baseclass) object (usually a ↵ | pierregm | 2008-05-05 | 2 | -6/+23 |
| | | | | | | ndarray) : fixed a bug in .compressed() when the _baseclass is a matrix | ||||
* | (no commit message) | pierregm | 2008-05-02 | 1 | -1/+0 |
| | |||||
* | core : clean up update_from | pierregm | 2008-05-01 | 3 | -16/+17 |
| | |||||
* | Replace tabs with spaces. | Charles Harris | 2008-05-01 | 1 | -154/+154 |
| | |||||
* | Remove trailing whitespace. | Charles Harris | 2008-05-01 | 1 | -1/+1 |
| | |||||
* | Remove trailing whitespace. | Charles Harris | 2008-05-01 | 1 | -28/+28 |
| | |||||
* | Fix grammar. | Charles Harris | 2008-05-01 | 1 | -2/+2 |
| | |||||
* | Remove dtype_or_type key word in favor of simpler interface. | Travis Oliphant | 2008-05-01 | 1 | -23/+9 |
| | |||||
* | Suppress test output. | Stefan van der Walt | 2008-05-01 | 1 | -2/+1 |
| | |||||
* | Support for Python types in x.view. | Stefan van der Walt | 2008-05-01 | 3 | -14/+76 |
| | |||||
* | Small cleanup and whitespace removal. | Charles Harris | 2008-04-30 | 1 | -17/+16 |
| | |||||
* | For x.view, change dtype into keyword argument. | Stefan van der Walt | 2008-04-30 | 3 | -7/+19 |
| | |||||
* | core : fixed a bug w/ array((0,0))/0. | pierregm | 2008-04-30 | 3 | -4/+33 |
| | | | | | | testutils : introduced assert_almost_equal/assert_approx_equal: use assert_almost_equal(a,b,decimal) to compare a and b up to decimal places use assert_approx_equal(a,b,decimal) to compare a and b up to b*10.**-decimal | ||||
* | Check for error and fix spacing. | Travis Oliphant | 2008-04-30 | 1 | -2/+3 |
| | |||||
* | Disable underflow warning reporting when testing for arch + test (#759). | David Cournapeau | 2008-04-29 | 2 | -0/+41 |
| | |||||
* | 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 |
| | |||||
* | Add comments to savetxt. | Stefan van der Walt | 2008-04-28 | 1 | -4/+10 |
| | |||||
* | Support for multi formatting elements in savetxt [patch by David Huard]. | Stefan van der Walt | 2008-04-28 | 2 | -61/+80 |
| | | | | Closes #663. | ||||
* | Code style cleanups. | Charles Harris | 2008-04-28 | 1 | -61/+98 |
| | |||||
* | 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. | ||||
* | Enclose macros with ifs in do {} while (0). | Charles Harris | 2008-04-26 | 2 | -28/+25 |
| | | | | Lets try this again with clean files. | ||||
* | Code style cleanups and fix for ticket #743. | Charles Harris | 2008-04-26 | 3 | -853/+954 |
| | | | | Lets try this without corrupted merge files. |