summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* TST: core: add more tests for struct array field namesMatthew Brett2011-03-291-1/+44
|
* BUG: fix f2py bug in generating interfaces for assumed shape support.Pearu Peterson2011-03-291-1/+1
|
* BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x.Pearu Peterson2011-03-281-3/+1
|
* BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228Pearu Peterson2011-03-271-1/+1
|
* ENH: Make all histogram functions work with empty input.Ralf Gommers2011-03-273-13/+31
|
* TST: Python 2.6 doesn't implement complex.__format__, so skip the tests thereMark Wiebe2011-03-261-6/+13
|
* TST: Add tests for array str formatting of complex values.Charles Harris2011-03-251-0/+47
|
* BUG: Fix str formatting of complex special values and clongdouble complex.Charles Harris2011-03-251-17/+44
|
* ENH: Add scalar support for the format() function introduced in Python 2.6 ↵Mark Wiebe2011-03-252-0/+106
| | | | (#1675)
* BUG: PyArray_CopyAndTranspose function was buggy (#766)Mark Wiebe2011-03-252-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 dataPauli Virtanen2011-03-251-16/+2
|
* DOC: Add a note about None values in the average documentation (#1180)Mark Wiebe2011-03-251-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 Gommers2011-03-251-1/+1
|
* BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614.Pearu Peterson2011-03-251-25/+44
|
* BUG: fixing selected_real_kind for PowerPCPearu Peterson2011-03-241-2/+7
|
* BUG: Array shape formatting strings were wrong in the iterator (#1780)Mark Wiebe2011-03-241-2/+2
|
* TST: Add test for ndarray.flat modifying data (#1608)Mark Wiebe2011-03-231-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 Wiebe2011-03-231-24/+37
|
* DEP: change behavior of out-of-order selection of recarray fields by name.Ralf Gommers2011-03-232-14/+3
| | | | This was deprecated in Numpy 1.5, see ticket #1431.
* TST: change assert to assert_ in core/tests/test_records.pyRalf Gommers2011-03-231-14/+14
|
* BUG: fix indentation issue in distutils/intelccompiler.pyRalf Gommers2011-03-231-8/+2
|
* API: update C API version hash after rename of nditer.niter -> nditer.nopRalf Gommers2011-03-221-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 exposureMark Wiebe2011-03-171-19/+66
|
* API: Rename 'niter' to 'nop' in the nditerMark Wiebe2011-03-175-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 docsMark Wiebe2011-03-161-29/+100
|
* DOC: document nditer and its methods. Some blanks left to fill in.Ralf Gommers2011-03-161-0/+188
|
* TST: lower precision of lognormal test a little more. Closes #1768.Ralf Gommers2011-03-161-1/+1
| | | | Thanks to Mark Sienkiewicz for testing.
* ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, ↵Mark Wiebe2011-03-157-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 arrayCharles Harris2011-03-152-0/+18
| | | | non-existent field.
* Merge branch 'deprecate'Charles Harris2011-03-151-4/+292
|\
| * DEP: Deprecate direct import of implementation functions.Charles Harris2011-03-151-4/+292
| |
* | API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-1412-366/+372
| |
* | DOC: fix some reST errors in core/defchararray.pyRalf Gommers2011-03-151-6/+6
| |
* | TST: Some tests in random module were failing on RHEL4 due to too high ↵Ralf Gommers2011-03-151-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 Harris2011-03-1412-178/+5307
|\
| * BUG: Fix valueerror typo.Charles Harris2011-03-141-1/+1
| |
| * DOC: Add examples for hermite, hermite_e, and laguerre polynomials.Charles Harris2011-03-143-247/+263
| |
| * ENH: Import Hermite, HermiteE, and Laguerre into package namespace.Charles Harris2011-03-131-0/+3
| |
| * ENH: Change test_trimdeg to test_cutdeg to match method name.Charles Harris2011-03-132-2/+3
| |
| * BUG: Fix wrong target values. Change Hermite_e to HermiteE, renameCharles Harris2011-03-131-30/+30
| | | | | | | | test_trimdeg to test_cutdeg to match method name.
| * BUG: Fix hermemulx, rename class to HermiteE, and move __all__ afterCharles Harris2011-03-131-8/+8
| | | | | | | | imports.
| * ENH: Rename test_trimdeg to test_cutdeg to match method and add ability toCharles Harris2011-03-133-3/+15
| | | | | | | | run as script.
| * ENH: A window attribute in polytemplate. This is helpful in defining theCharles Harris2011-03-131-129/+250
| | | | | | | | | | | | mappings for the Hermite and Laguerre polynomials where the domains have infinite bounds. The window allows one to specify the interval that the domain maps to instead of using the default domain as was done before.
| * ENH: First commit of hermite and laguerre polynomials. The documentation andCharles Harris2011-03-036-0/+5022
| | | | | | | | tests still need fixes.
| * Remove unused function legtimesx, it has been replaced by legmulx.Charles Harris2011-03-031-46/+0
| |
* | STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-1411-112/+112
| | | | | | | | | | It's a little bit shorter, and more intuitively expresses what the flag does.
* | BUG: Another iterator broadcasting error message had a reversed shapeMark Wiebe2011-03-132-1/+18
| |
* | STY: Rename source files for the iterator to nditer_*.*Mark Wiebe2011-03-139-12/+12
| |
* | ENH: Rename 'np.newiter' to 'np.nditer'Mark Wiebe2011-03-134-292/+292
| |
* | DOC: Add info about iterator, new functions, and C API additions to release ↵Mark Wiebe2011-03-131-2/+2
| | | | | | | | notes