summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
Commit message (Expand)AuthorAgeFilesLines
* Put multiarray modul sources into separate directory.David Cournapeau2009-04-301-2153/+0
* Put array methods in separate file.David Cournapeau2009-04-301-12/+14
* Enable separate compilation of existing files for multiarray module.David Cournapeau2009-04-301-3/+0
* Tag any function/typedef/variable exported through the C-API with NPY_NO_EXPO...David Cournapeau2009-04-301-5/+5
* Coding style cleanups.Charles Harris2009-02-171-224/+351
* Fix missing initializers warnings.David Cournapeau2008-10-081-1/+1
* Use NPY_UNUSED in numpy.core sources.David Cournapeau2008-10-081-1/+1
* Fix ticket #877 along with other bugs not yet reported for data-types with ti...Travis Oliphant2008-08-061-0/+1
* Merge OBJECT_API and MULTIARRAY_API as NUMPY_API.Charles Harris2008-05-241-5/+5
* Use EquivTypes instead of equality testing for data-type comparison.Travis Oliphant2008-05-111-1/+1
* Remove dtype_or_type key word in favor of simpler interface.Travis Oliphant2008-05-011-23/+9
* Support for Python types in x.view.Stefan van der Walt2008-05-011-11/+48
* For x.view, change dtype into keyword argument.Stefan van der Walt2008-04-301-3/+5
* Fix reference count problems due to indiscriminate use of DescrConverter in P...Travis Oliphant2008-03-221-19/+73
* Add ddof parameter to std and var computations.Travis Oliphant2008-03-071-8/+13
* Allow clip method to have either min or max passed in.Travis Oliphant2007-12-111-2/+6
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-211-1437/+1436
* Properly decrement references for _internal.py importsTravis Oliphant2007-05-231-0/+2
* Fix so that _internal.py gets imported when it is needed. Perhaps this will ...Travis Oliphant2007-05-231-0/+6
* Remove tests for inequality on unicode scalars --- not sure why they were the...Travis Oliphant2007-05-221-3/+8
* Add interp to numpy.lib adapted from arrayfns. Add an unfinished arrayfns co...Travis Oliphant2007-04-021-1/+3
* Change 0-d record arrays so that field selection returns a 0-d array and not ...Travis Oliphant2007-03-301-1/+1
* Fix error in implementation of itemset for >= 2-d arrays.Travis Oliphant2007-02-091-1/+1
* Allow argsort and sort functions and argsort method to take None as an argume...Travis Oliphant2006-12-021-1/+2
* Add order keyword to argsort and fix documentation of sort and argsort. Also...Travis Oliphant2006-12-021-5/+31
* Allow order keyword to sort for sorting record arrays.Travis Oliphant2006-11-041-6/+30
* Expand usage of hasobject to be a flag-like entity keeping track of how the d...Travis Oliphant2006-10-281-19/+21
* Fix optimization so that array's of 1-element are not interpeted as integers.Travis Oliphant2006-10-251-0/+3
* Fix some typos and allow use of F_CONTIGUOUS and C_CONTIGUOUS in requires.Travis Oliphant2006-10-241-1/+1
* Fix missing comment characters in intel.py. Check for None in .reshape and ....Travis Oliphant2006-10-191-0/+6
* 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