summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
Commit message (Collapse)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 ↵David Cournapeau2009-04-301-5/+5
| | | | NPY_NO_EXPORT instead of static.
* 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 ↵Travis Oliphant2008-08-061-0/+1
| | | | titles.
* 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 ↵Travis Oliphant2008-03-221-19/+73
| | | | PyArg_ParseTuple. Tests need to be run to make sure this works.
* 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
| | | | fix the problem with multiple-interpreters not working correctly.
* Remove tests for inequality on unicode scalars --- not sure why they were ↵Travis Oliphant2007-05-221-3/+8
| | | | there in the first place. Fix bug in masked_array.
* Add interp to numpy.lib adapted from arrayfns. Add an unfinished arrayfns ↵Travis Oliphant2007-04-021-1/+3
| | | | compatibility module to old_numeric.
* Change 0-d record arrays so that field selection returns a 0-d array and not ↵Travis Oliphant2007-03-301-1/+1
| | | | a scalar.
* 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 ↵Travis Oliphant2006-12-021-1/+2
| | | | argument. Add order= keyword to sort and argsort functions.
* Add order keyword to argsort and fix documentation of sort and argsort. ↵Travis Oliphant2006-12-021-5/+31
| | | | Also, fix so that a Python long is passed to mmap instead of an array scalar. Fix setting when using mixed array indices and slice objects by making sure to swap the object in the reverse direction to the swapping that takes place on the MapGet operations.
* 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 ↵Travis Oliphant2006-10-281-19/+21
| | | | data-type should be used.
* 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
| | | | .resize
* 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 ↵Travis Oliphant2006-09-221-17/+2
| | | | .putmask as a method and make it only a function.
* 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
| | | | | Rename some searchsorted variables with more descriptive names. Do some documentation markup in case we ever run doxygen over the source.
* 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 ↵Travis Oliphant2006-09-191-4/+31
| | | | with integer inputs.
* 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 ↵Travis Oliphant2006-09-131-8/+80
| | | | array. Re-name a few confusing constants in ufuncobject.c
* 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
| | | | | Tweak documentation of searchsorted. Indent many docstrings in add_newdocs.
* Add new keyword <side> to the searchsorted method and function.Charles Harris2006-09-031-32/+51
| | | | | Add documentation thereto. Cleanup whitespace.
* Finish moving comments from arraymethods to add_newdocs.Charles Harris2006-08-291-44/+29
| | | | Replace hardcoded 1 by METH_VARARGS in arraymethods.
* 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
| | | | The formatting is still very crude and the docs need expansion.
* Move the documentation of the sort, argsort, and searchsorted methods intoCharles Harris2006-08-271-17/+3
| | | | | add_newdocs. Rewrite the documentation of sort and argsort. Replace the documentation of these functions in fromnumeric with the new documentation.