summaryrefslogtreecommitdiff
path: root/scipy/base/src/arraymethods.c
Commit message (Collapse)AuthorAgeFilesLines
* Moved scipy directory to numpyTravis Oliphant2006-01-041-1647/+0
|
* Added lexicographic sort.Travis Oliphant2006-01-011-4/+2
|
* Added other sort methods (heap, merge)Travis Oliphant2005-12-311-13/+21
|
* Updated PyArray_ArgSort to allow future sorting choices.Travis Oliphant2005-12-301-1/+1
|
* Changed sort to in-place --- uses copy for now.Travis Oliphant2005-12-301-7/+10
|
* Added an mlab so that there is one file to replace the old MLab functionality.Travis Oliphant2005-12-281-1/+0
|
* Changed .toscalar() method to .item()Travis Oliphant2005-12-261-2/+2
|
* Changed rtype to dtype in reduce for consistency.Travis Oliphant2005-12-261-46/+46
|
* Remove silly return from array_flatten.Travis Oliphant2005-12-161-2/+1
|
* Made names more consistent, fixed byteorder for recarraysTravis Oliphant2005-12-141-1/+1
|
* Added newbyteorder methods.Travis Oliphant2005-12-141-1/+21
|
* Removed swap paramterTravis Oliphant2005-12-141-47/+15
|
* Fixed error. Added byteorder attribute and allow byte-order prefix in ↵Travis Oliphant2005-12-141-1/+2
| | | | string->dtypedescr conversions.
* Fixed array pickle to handle subclasses.Travis Oliphant2005-12-131-6/+5
|
* Fixed pickling to support arbitrary dtypedescr arrays.Travis Oliphant2005-12-131-19/+31
|
* Moved function pointers to sub-structure.Travis Oliphant2005-12-101-4/+4
|
* Add API tags: comments like /*OBJECT_API*/ before functions that are exported.cookedm2005-12-061-0/+9
| | | | OBJECT_API is for the PyArray API, MULTIARRAY_API for multiarray, and UFUNC_API for ufuncs.
* Fixed-up setfield bug and added offset check for negative numbers.Travis Oliphant2005-12-061-1/+2
|
* Field specification possible with two-kinds of dictionariesTravis Oliphant2005-12-061-2/+0
|
* Fixtype branch. No segfaults on test...Travis Oliphant2005-12-051-9/+9
|
* Fixtype branch compiles again. Manual check of PyArray_Descr reference ↵Travis Oliphant2005-12-051-20/+12
| | | | counting completed.
* More fixes for fixtype branch.Travis Oliphant2005-12-051-3/+17
|
* Reference count fixes for fixtype branch.Travis Oliphant2005-12-041-10/+15
|
* Conversion from PyArray_Typecode to PyArray_Descr * now compiles.Travis Oliphant2005-12-041-25/+30
|
* Finished pass 1 of fixtype changes. Now, fix compile errors...Travis Oliphant2005-12-041-31/+31
|
* More changes...Travis Oliphant2005-12-041-102/+25
|
* Incremental changes to fixtype branch.Travis Oliphant2005-12-031-24/+42
|
* First initial changes.Travis Oliphant2005-12-021-31/+28
|
* Added ability to get and set a tuple-type field.Travis Oliphant2005-12-011-27/+88
|
* Added ability to set data type to a tupleTravis Oliphant2005-12-011-4/+19
|
* Added PyArray_SetField to API. Began code to allow setting the data type ↵Travis Oliphant2005-12-011-0/+54
| | | | with a tuple of (dtype, shape) for better records support.
* Added .var method and fixed problem with .stdTravis Oliphant2005-11-301-1/+20
|
* Fixed up unicode scalar object issues. Started character array sub-class.Travis Oliphant2005-11-221-2/+4
|
* Fixed problem with ravel and 1-d.Travis Oliphant2005-11-201-7/+5
|
* Fixed array_resize problem.Travis Oliphant2005-11-181-0/+1
|
* Fixed some issues with fromfile and hopefully with mingw32 compilations.Travis Oliphant2005-11-161-1/+1
|
* Modify README.txtTravis Oliphant2005-11-131-0/+1
|
* Patch by Andrew Straw, which fixes recently introduced segfaults triggeredFernando Perez2005-11-131-4/+5
| | | | | because arraymethods.c's _ARET() macro assumes its input is PyArrayObject*, whereas in these cases it's simply PyObject*.
* Removed svn version number for release.Travis Oliphant2005-11-121-5/+5
|
* Changed Transpose C-API. Cleaned up memory leaks.Travis Oliphant2005-11-091-4/+14
|
* Switched order of put and putmask.Travis Oliphant2005-11-091-8/+8
|
* Created a better Copy function that can copy FORTRAN order too.Travis Oliphant2005-11-081-3/+8
|
* Fixed another leak.Travis Oliphant2005-11-081-1/+3
|
* removed MapIter commands from C-APITravis Oliphant2005-11-051-1/+1
|
* valgrind-found fixes and adjust indexing for object arrays.Travis Oliphant2005-11-041-1/+5
|
* Disable problem test.Travis Oliphant2005-11-041-4/+4
|
* Comment changes, and change read to write in PyArray_DumpTravis Oliphant2005-11-031-5/+7
|
* Fixed bug in getfield, and some consistency issues.Travis Oliphant2005-11-031-7/+9
|
* More docstring fixes for mean() and sum().edschofield2005-10-271-17/+12
|
* Trivial changes to a.mean() docstringedschofield2005-10-271-2/+2
|