Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Docstring fixes to fromnumeric, to better mirror ndarray docstrings. | Pauli Virtanen | 2008-04-26 | 1 | -17/+45 |
| | |||||
* | Fix two typos in ndarray docstrings. | Pauli Virtanen | 2008-04-26 | 1 | -2/+2 |
| | |||||
* | Revert to 5092. | Charles Harris | 2008-04-26 | 2 | -25/+28 |
| | |||||
* | Rewrite most ndarray docstrings: RST-reformat old and add new ones. | Pauli Virtanen | 2008-04-26 | 1 | -212/+902 |
| | | | | | | | | | Most of the docstrings are adapted from those of the functions in core.fromnumeric. I edited the ndarray method docstrings to closely match the function docstrings. I didn't yet fix the discrepancy in ndarray.reshape and fromnumeric.reshape docstrings re ValueError raising. | ||||
* | revert to 5092 | Charles Harris | 2008-04-26 | 1 | -66/+57 |
| | |||||
* | Add semicolons to end of macros. This helps editors and such get the | Charles Harris | 2008-04-26 | 1 | -57/+66 |
| | | | | formatting right. Do some small code cleanup. | ||||
* | Sprinkle some do {} while (0) magic around macros with if statements. They | Charles Harris | 2008-04-26 | 2 | -28/+25 |
| | | | | | should lose the semi-colons too, but I don't want to risk breaking out of tree code. | ||||
* | Docstrings: correct description of `dtype` in prod, cumsum, cumprod (was OK ↵ | Pauli Virtanen | 2008-04-26 | 1 | -48/+49 |
| | | | | in sum, product) | ||||
* | Docstrings in fromnumeric: very small fixes. | Pauli Virtanen | 2008-04-26 | 1 | -3/+3 |
| | |||||
* | Docstring improvements for all, any, alltrue, sometrue, clip, compress + ↵ | Pauli Virtanen | 2008-04-26 | 1 | -31/+118 |
| | | | | smaller stylistic changes to others. | ||||
* | Code style cleanups. | Charles Harris | 2008-04-26 | 1 | -141/+214 |
| | |||||
* | histogram: an error is raised for varying bin widths only if normed=True. | dhuard | 2008-04-25 | 1 | -3/+13 |
| | |||||
* | Added an ignore warning in the test to avoid buildbot messages. | dhuard | 2008-04-25 | 1 | -0/+2 |
| | |||||
* | Fix to histogram with respect to block updating.a | dhuard | 2008-04-25 | 1 | -6/+6 |
| | |||||
* | Modified histogram according to the discussion on the numpy ML. | dhuard | 2008-04-25 | 2 | -65/+252 |
| | | | | This transitions from the old behavior to the new behavior using the new keyword. |