summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
Commit message (Expand)AuthorAgeFilesLines
* Python 2.5 fixes: replace int with Py_ssize_t where appropiatecookedm2006-09-281-2/+3
* Fix .take() default-axis argument bug.Travis Oliphant2006-09-231-1/+0
* Switch order of .put arguments to match the function call. Eliminate .putmas...Travis Oliphant2006-09-221-17/+2
* Small changes of searchsorted error messages.Charles Harris2006-09-211-2/+3
* Make a PyArray_SearchsideConverter for the side keyword in searchsorted.Charles Harris2006-09-211-20/+5
* Rework logic a bit for clean-upTravis Oliphant2006-09-191-9/+7
* Fix mean, std, and var methods so that they reduce over double data-type with...Travis Oliphant2006-09-191-4/+31
* Fix so that astype and transpose return 0-d arrays if given 0-d arrays.Travis Oliphant2006-09-181-3/+2
* Fix problem with .item(n) for 1-d case.Travis Oliphant2006-09-141-1/+3
* Fix random.poisson(0) to return 0 (#229)Travis Oliphant2006-09-131-1/+1
* Add itemset method to parallel item methodTravis Oliphant2006-09-131-0/+116
* Allow .item(<index>) for fast selection of Python scalars from a numpy array....Travis Oliphant2006-09-131-8/+80
* Fix invalid keyword argument error in reshape method.Travis Oliphant2006-09-071-2/+6
* Change ndarray.searchsorted keyword "value" to "keys".Charles Harris2006-09-031-6/+6
* Add new keyword <side> to the searchsorted method and function.Charles Harris2006-09-031-32/+51
* Finish moving comments from arraymethods to add_newdocs.Charles Harris2006-08-291-44/+29
* Move more documentation from arraymethods to add_newdocs.Charles Harris2006-08-291-105/+87
* Break up the documentation of ndarray attributes into separate calls.Charles Harris2006-08-281-2/+2
* Move most of the remaining documentation from arraymethods to add_newdocs.Charles Harris2006-08-281-221/+68
* Move the documentation of the sort, argsort, and searchsorted methods intoCharles Harris2006-08-271-17/+3
* Fix broadcast-copy on fancy set-item.Travis Oliphant2006-08-261-5/+5
* Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy sp...Travis Oliphant2006-08-241-4/+0
* add .abs() as a method on the array objectcookedm2006-08-231-0/+4
* Fix white-space issues.Travis Oliphant2006-08-191-238/+236
* Check for errors when casting from non-number types.Travis Oliphant2006-08-111-1/+1
* Allow .astype method to work on data-types with fields.Travis Oliphant2006-08-111-0/+3
* Change name of function -- no re-compile necessary.Travis Oliphant2006-08-101-2/+2
* Add output arguments to a few more functions for consistencyTravis Oliphant2006-08-101-17/+29
* Update C-API to add features needed for numarray compatibility. Output argum...Travis Oliphant2006-08-101-84/+148
* Fix segfault in Ticket #238Travis Oliphant2006-08-081-0/+6
* Change file reading and writing to call file object instead of using PyFile_F...Travis Oliphant2006-07-201-4/+2
* add some more docstringscookedm2006-07-181-1/+7
* Added PyArray_ToString to C-API and made default .tostring() method return C-...Travis Oliphant2006-07-181-6/+12
* Fix docstrings.Travis Oliphant2006-07-121-3/+3
* Fix .choose docstring and allow more functions to be 'vectorized'Travis Oliphant2006-07-111-5/+6
* MADE NPY_ versions of all PyArray_ prefixes corresponding to CONSTANTS. Crea...Travis Oliphant2006-07-101-2/+0
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-8/+8
* Remove dependency on _internal.py from pickles. Clean up Py_ssize_t usage. A...Travis Oliphant2006-07-021-1/+1
* Fixes for objects in arrays.Travis Oliphant2006-06-271-0/+2
* Add support for object-arrays inside of other recorcd types.Travis Oliphant2006-06-271-34/+56
* Fix #157Travis Oliphant2006-06-261-5/+15
* Allow void-type scalars to be sequences if they have fields.Travis Oliphant2006-06-241-7/+1
* Fix copyswapn to take strides.Travis Oliphant2006-06-241-22/+20
* Speed up some copying code. Add MoveInto and CopyInto variants of PyArray_<....Travis Oliphant2006-06-221-5/+5
* Add a version number to pickles of ndarray and dtype.cookedm2006-06-101-12/+36
* Add RNG interface and clean up old-interfaces to be separate from newer ones.Travis Oliphant2006-06-091-11/+0
* Change squeeze to not return array scalars.Travis Oliphant2006-06-011-1/+1
* Better docstring for the nonzero method.edschofield2006-05-181-2/+10
* Better a.transpose() docstring (fixes #121)cookedm2006-05-161-1/+20
* Update copyswap functions to take array as argument in preparation for improv...Travis Oliphant2006-04-251-8/+4