Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: add ndmin keyword to loadtxt. Closes #1562. | Ralf Gommers | 2011-04-03 | 2 | -2/+36 |
| | | | | Thanks to Paul Anton Letnes and Derek Homeier. | ||||
* | ENH: return empty array from loadtxt for an empty file. Closes #1752. | Ralf Gommers | 2011-04-03 | 2 | -3/+11 |
| | | | | Thanks to Paul Anton Letnes and Derek Homeier. | ||||
* | TST: add test for ticket #1458. | Charles Harris | 2011-04-02 | 1 | -1/+12 |
| | |||||
* | ENH: ticket #1458, make loadtxt(..., unpack=True) unpack structured array | Derek Homier | 2011-04-02 | 1 | -2/+7 |
| | | | | fields. | ||||
* | BUG: ticket #1428, allow int64 and uint64 integer types to be specified in | Charles Harris | 2011-04-02 | 2 | -2/+24 |
| | | | | genfromtxt. | ||||
* | BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt. | Christoph Gohlke | 2011-04-02 | 2 | -0/+20 |
| | | | | Add some tests for these types. | ||||
* | WHT: Cleanup trailing whitespace. | Charles Harris | 2011-04-02 | 5 | -11/+7 |
| | |||||
* | DOC: improve clarity of window function docs. | Ralf Gommers | 2011-04-02 | 1 | -55/+33 |
| | | | | Thanks to Yury Zaytsev for the suggestion. | ||||
* | BUG: handle empty inputs in cov and corrcoef. Closes #1773. | Ralf Gommers | 2011-04-02 | 2 | -1/+21 |
| | |||||
* | BUG: make histogramdd work with infinite size bins. Closes #1788. | Ralf Gommers | 2011-04-01 | 2 | -7/+48 |
| | | | | | Also add more informative error messages for wrongly specified bins, for both histogram and histogram2d/dd. | ||||
* | Merge branch 'test-genfromtxt-fname' of git://github.com/matthew-brett/numpy ↵ | Charles Harris | 2011-03-30 | 2 | -2/+21 |
|\ | | | | | | | into test-genfromtxt-fname | ||||
| * | BUG: open genfromtxt file as binary; add test for filename use | Matthew Brett | 2011-03-30 | 2 | -2/+21 |
| | | |||||
* | | BUG: lib: catch SWIG NameError in lookfor (#1704) | Pauli Virtanen | 2011-03-30 | 1 | -3/+12 |
| | | | | | | | | Thanks to sebhaase for the patch. | ||||
* | | DEP: deprecate normed kw in histogram and restore its old behavior. Introduce | Ralf Gommers | 2011-03-30 | 2 | -27/+47 |
|/ | | | | | | | | | | | | | | | density kw. This reverts part of the following commits: 3743430e 400a2a67 3743430e Behavior for normed keyword is again the same as it was in Numpy 1.5. The desired behavior (probability density) is implemented by the new density keyword, which reflects the functionality better than "normed". For a discussion on this issue, see the Numpy mailing list thread started on Aug 6th, 2010. | ||||
* | BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747. | Ralf Gommers | 2011-03-29 | 2 | -2/+16 |
| | |||||
* | ENH: Make all histogram functions work with empty input. | Ralf Gommers | 2011-03-27 | 3 | -13/+31 |
| | |||||
* | DOC: lib: point the reader towards masked arrays when there is missing data | Pauli Virtanen | 2011-03-25 | 1 | -16/+2 |
| | |||||
* | DOC: Add a note about None values in the average documentation (#1180) | Mark Wiebe | 2011-03-25 | 1 | -0/+15 |
| | | | | | | | It was suggested in issue #1180 to add an ignore_None= parameter to average, but I think this does not fit cleanly into NumPy, and rather educating users about Python list comprehensions is better. This is an attempt to do that. | ||||
* | API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API | Mark Wiebe | 2011-03-14 | 3 | -39/+40 |
| | |||||
* | STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOP | Mark Wiebe | 2011-03-14 | 1 | -2/+2 |
| | | | | | It's a little bit shorter, and more intuitively expresses what the flag does. | ||||
* | API: Simplify basic iterator constructors, add 'itershape' to advanced ↵ | Mark Wiebe | 2011-03-13 | 1 | -5/+5 |
| | | | | iterator constructor | ||||
* | TST: fix ResourceWarning under Python 3.2 | rgommers | 2011-03-11 | 1 | -0/+1 |
| | |||||
* | DEP: remove deprecated np.lib.ufunclike.log2 function. | rgommers | 2011-03-11 | 2 | -54/+1 |
| | |||||
* | DEP: remove deprecated get_numpy_include. | rgommers | 2011-03-11 | 2 | -5/+2 |
| | |||||
* | DEP: remove unique1d, setmember1d and intersect1d_nu. | rgommers | 2011-03-11 | 3 | -183/+5 |
| | |||||
* | DEP: Update deprecation messages in genloadtxt with a version number. | rgommers | 2011-03-11 | 1 | -12/+14 |
| | | | | | Because the docstring was still using `skiprows` explicitly, that keyword can not yet be removed. Should be done for 2.0. | ||||
* | API: Rename the iterator function pointer types to be more consistent with ↵ | Mark Wiebe | 2011-03-10 | 1 | -3/+3 |
| | | | | | | | NumPy convention 'NpyIter_IterNext_Fn' -> 'NpyIter_IterNextFunc *' 'NpyIter_GetCoords_Fn' -> 'NpyIter_GetCoordsFunc *' | ||||
* | ENH: Use fmax.reduce and fmin.reduce to implement nanmax and nanmin. | Charles Harris | 2011-03-07 | 1 | -6/+12 |
| | |||||
* | BUG: Use isnan to test for nan, avoids problems with signed nans. | Charles Harris | 2011-03-07 | 1 | -40/+41 |
| | | | | Replace assert with assert_. Cleanup trailing whitespace. | ||||
* | DOC: commit some more fixes from the doc wiki. | rgommers | 2011-03-03 | 2 | -13/+15 |
| | |||||
* | TST: clean up some ResourceWarnings from python 3.2. | rgommers | 2011-03-02 | 3 | -17/+27 |
| | | | | | Also make the sys.stdout temporary redirection in one of the tests a little more robust. That is still necessary, because np.who is very noisy. | ||||
* | TST: replace assert with assert_ | rgommers | 2011-03-02 | 1 | -15/+15 |
| | |||||
* | DOC: merge more doc wiki edits. | rgommers | 2011-03-02 | 3 | -13/+40 |
| | |||||
* | TST: update namespace usage in lib.polynomial doctests. | rgommers | 2011-03-01 | 1 | -11/+8 |
| | |||||
* | BUG: correct file name in fromregex. | rgommers | 2011-03-01 | 1 | -2/+2 |
| | | | | Thanks to Mattieu Brucher for reporting. | ||||
* | TYP: Fix typo. | Charles Harris | 2011-02-18 | 1 | -1/+1 |
| | |||||
* | BUG: Fix python3k import problem. | Charles Harris | 2011-02-11 | 1 | -1/+1 |
| | |||||
* | STY: index_tricks: Improve comments and documentation strings | Mark Wiebe | 2011-02-10 | 1 | -0/+13 |
| | |||||
* | ENH: index_tricks: Implement unravel_index and ravel_coords functions in C | Mark Wiebe | 2011-02-10 | 3 | -68/+553 |
| | |||||
* | ENH: core: Add new GetArrayParamsFromObject API function (fixes #1081) | Mark Wiebe | 2011-02-06 | 1 | -1/+1 |
| | | | | | | | | | This function allows code to query an object's "innate" type and shape, without actually creating a NumPy array out of it. PyArray_FromAny has been changed to use this function, as an assurance that its implementation is correct. This also fixes the known failure in test_regression.py. | ||||
* | Merge branch 'new_iterator' - new iterator, ufunc update, restore 1.5 ABI | Mark Wiebe | 2011-01-28 | 3 | -28/+65 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New Iterator - Read doc/neps/new-iterator-ufunc.rst. UFunc Update - Change all ufunc functions to use the new iterator. This replaces the inline buffering with iterator buffering, except for the reductions and generalized ufunc which use updateifcopy at the moment. Also adds out= and order= parameters to all ufuncs. Restore 1.5 ABI - This was done by moving the new type numbers to the end of the type enumeration, and replacing all type promotion code with a table-based approach. The ArrFuncs was restored by putting the new type cast functions into the cast dictionary, originally designed just for custom types. Conflicts: numpy/core/src/multiarray/ctors.c numpy/core/tests/test_regression.py | ||||
| * | ENH: core: Shuffle type numbers so any new ones go on the end. | Mark Wiebe | 2011-01-25 | 1 | -5/+18 |
| | | |||||
| * | ENH: core: Implement PyArray_CopyInto using the new iterator | Mark Wiebe | 2011-01-16 | 2 | -23/+47 |
| | | | | | | | | | | | | | | | | This change also uses the dtype conversion code implemented for new iterator buffering, which differs slightly from the previous casting behavior. In particular, fields are matched up by name instead of position, so code depending on that behavior breaks. The loadtxt function has been fixed to not depend on this casting behavior. | ||||
* | | ENH: Add minlength keyword to bincount. Patch from ticket #1595. | David Warde-Farley | 2011-01-10 | 2 | -8/+39 |
|/ | |||||
* | Apply patch by bsouthey in Ticket #1475 to turn off appropriate tests when ↵ | chanley | 2010-12-27 | 1 | -1/+8 |
| | | | | | | | ctypes is not installed. This is of particular importance to STScI since this test is breaking our nightly build/test setup. | ||||
* | BUG: Try fix for python 2.4, use list instead of tuple. | Charles Harris | 2010-12-02 | 1 | -1/+1 |
| | |||||
* | TST: Add regression test for ticket #1676. | Charles Harris | 2010-11-24 | 1 | -0/+12 |
| | |||||
* | BUG: data shouldn't be an optional argument. | Charles Harris | 2010-11-24 | 1 | -8/+6 |
| | |||||
* | BUG: Fix logic in handling of dtype in append_fields. | weathergod | 2010-11-24 | 1 | -2/+4 |
| | |||||
* | BUG: Fix GzipFile wrapper to be <= 2.5 compatible. | Stefan van der Walt | 2010-11-23 | 1 | -4/+9 |
| |