Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | DOC: correct note about correspondence vstack and concatenate. Closes #1446. | Ralf Gommers | 2011-03-30 | 1 | -2/+2 |
| | |||||
* | ENH: distutils: provide better support for C++ code on HPUX. Closes #1383. | Ralf Gommers | 2011-03-30 | 1 | -0/+12 |
| | |||||
* | BUG: distutils: update HP compiler flags. Closes #1377. | Ralf Gommers | 2011-03-30 | 1 | -3/+3 |
| | |||||
* | TST: tests for deprecated decorator. | Ralf Gommers | 2011-03-29 | 2 | -10/+37 |
| | |||||
* | BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747. | Ralf Gommers | 2011-03-29 | 2 | -2/+16 |
| | |||||
* | DOC: correct signature and description of ndarray.getfield. | Ralf Gommers | 2011-03-29 | 1 | -35/+20 |
| | |||||
* | TST: add some tests for array2print. | Ralf Gommers | 2011-03-29 | 1 | -36/+46 |
| | |||||
* | BUG: make correlate/convolve work also with unicode mode arg. Closes #1705. | Ralf Gommers | 2011-03-29 | 1 | -1/+1 |
| | |||||
* | TST: core: add more tests for struct array field names | Matthew Brett | 2011-03-29 | 1 | -1/+44 |
| | |||||
* | BUG: fix f2py bug in generating interfaces for assumed shape support. | Pearu Peterson | 2011-03-29 | 1 | -1/+1 |
| | |||||
* | BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x. | Pearu Peterson | 2011-03-28 | 1 | -3/+1 |
| | |||||
* | BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228 | Pearu Peterson | 2011-03-27 | 1 | -1/+1 |
| | |||||
* | ENH: Make all histogram functions work with empty input. | Ralf Gommers | 2011-03-27 | 3 | -13/+31 |
| | |||||
* | TST: Python 2.6 doesn't implement complex.__format__, so skip the tests there | Mark Wiebe | 2011-03-26 | 1 | -6/+13 |
| | |||||
* | TST: Add tests for array str formatting of complex values. | Charles Harris | 2011-03-25 | 1 | -0/+47 |
| | |||||
* | BUG: Fix str formatting of complex special values and clongdouble complex. | Charles Harris | 2011-03-25 | 1 | -17/+44 |
| | |||||
* | ENH: Add scalar support for the format() function introduced in Python 2.6 ↵ | Mark Wiebe | 2011-03-25 | 2 | -0/+106 |
| | | | | (#1675) | ||||
* | BUG: PyArray_CopyAndTranspose function was buggy (#766) | Mark Wiebe | 2011-03-25 | 2 | -50/+61 |
| | | | | | | I don't expect fastCopyAndTranspose to be able to be much faster than using .T.copy(), since .T always returns a view. Thus, this function implements .T.copy() in C as a replacement for the buggy code. | ||||
* | 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. | ||||
* | BUG: distutils: change compile flag on AIX from -O5 to -O3. See #1261. | Ralf Gommers | 2011-03-25 | 1 | -1/+1 |
| | |||||
* | BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614. | Pearu Peterson | 2011-03-25 | 1 | -25/+44 |
| | |||||
* | BUG: fixing selected_real_kind for PowerPC | Pearu Peterson | 2011-03-24 | 1 | -2/+7 |
| | |||||
* | BUG: Array shape formatting strings were wrong in the iterator (#1780) | Mark Wiebe | 2011-03-24 | 1 | -2/+2 |
| | |||||
* | TST: Add test for ndarray.flat modifying data (#1608) | Mark Wiebe | 2011-03-23 | 1 | -0/+6 |
| | | | | | Something appears to have fixed this issue, so creating a test for it. | ||||
* | ENH: Speed up tolist() by removing intermediate temporary allocations (#1779) | Mark Wiebe | 2011-03-23 | 1 | -24/+37 |
| | |||||
* | DEP: change behavior of out-of-order selection of recarray fields by name. | Ralf Gommers | 2011-03-23 | 2 | -14/+3 |
| | | | | This was deprecated in Numpy 1.5, see ticket #1431. | ||||
* | TST: change assert to assert_ in core/tests/test_records.py | Ralf Gommers | 2011-03-23 | 1 | -14/+14 |
| | |||||
* | BUG: fix indentation issue in distutils/intelccompiler.py | Ralf Gommers | 2011-03-23 | 1 | -8/+2 |
| | |||||
* | API: update C API version hash after rename of nditer.niter -> nditer.nop | Ralf Gommers | 2011-03-22 | 1 | -1/+1 |
| | | | | | This is the version for 1.6.0b1, so should not be changed anymore. If any more changes, up the version to 7. | ||||
* | DOC: Slight improvements to the Python nditer exposure | Mark Wiebe | 2011-03-17 | 1 | -19/+66 |
| | |||||
* | API: Rename 'niter' to 'nop' in the nditer | Mark Wiebe | 2011-03-17 | 5 | -925/+925 |
| | | | | | | This name was chosen partially based on the previous multi-iter, which stored an array of iterators, so 'niter' made sense. In the new nditer, it doesn't, and 'nop' for number of operands seems better. | ||||
* | DOC: Fill in more of the nditer docs | Mark Wiebe | 2011-03-16 | 1 | -29/+100 |
| | |||||
* | DOC: document nditer and its methods. Some blanks left to fill in. | Ralf Gommers | 2011-03-16 | 1 | -0/+188 |
| | |||||
* | TST: lower precision of lognormal test a little more. Closes #1768. | Ralf Gommers | 2011-03-16 | 1 | -1/+1 |
| | | | | Thanks to Mark Sienkiewicz for testing. | ||||
* | ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, ↵ | Mark Wiebe | 2011-03-15 | 7 | -50/+103 |
| | | | | | | | np.zeros_like, and np.ones_like This way, the sub-type can be avoided if necessary. This helps mitigate, but doesn't fix, ticket #1753, by allowing "b = np.empty_like(a, subok=False)". | ||||
* | BUG: Fix ticket #1770, segfault with python 3.2 structured array | Charles Harris | 2011-03-15 | 2 | -0/+18 |
| | | | | non-existent field. | ||||
* | Merge branch 'deprecate' | Charles Harris | 2011-03-15 | 1 | -4/+292 |
|\ | |||||
| * | DEP: Deprecate direct import of implementation functions. | Charles Harris | 2011-03-15 | 1 | -4/+292 |
| | | |||||
* | | API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API | Mark Wiebe | 2011-03-14 | 12 | -366/+372 |
| | | |||||
* | | DOC: fix some reST errors in core/defchararray.py | Ralf Gommers | 2011-03-15 | 1 | -6/+6 |
| | | |||||
* | | TST: Some tests in random module were failing on RHEL4 due to too high ↵ | Ralf Gommers | 2011-03-15 | 1 | -9/+9 |
|/ | | | | | | | | | precision. It is not yet confirmed this is the right precision, since I don't have an RHEL4 test machine. Changing this anyway for 1.6.0 beta 1. See ticket 1768. | ||||
* | Merge branch 'poly' | Charles Harris | 2011-03-14 | 12 | -178/+5307 |
|\ | |||||
| * | BUG: Fix valueerror typo. | Charles Harris | 2011-03-14 | 1 | -1/+1 |
| | | |||||
| * | DOC: Add examples for hermite, hermite_e, and laguerre polynomials. | Charles Harris | 2011-03-14 | 3 | -247/+263 |
| | | |||||
| * | ENH: Import Hermite, HermiteE, and Laguerre into package namespace. | Charles Harris | 2011-03-13 | 1 | -0/+3 |
| | | |||||
| * | ENH: Change test_trimdeg to test_cutdeg to match method name. | Charles Harris | 2011-03-13 | 2 | -2/+3 |
| | | |||||
| * | BUG: Fix wrong target values. Change Hermite_e to HermiteE, rename | Charles Harris | 2011-03-13 | 1 | -30/+30 |
| | | | | | | | | test_trimdeg to test_cutdeg to match method name. | ||||
| * | BUG: Fix hermemulx, rename class to HermiteE, and move __all__ after | Charles Harris | 2011-03-13 | 1 | -8/+8 |
| | | | | | | | | imports. |