summaryrefslogtreecommitdiff
path: root/scipy/base/src
Commit message (Collapse)AuthorAgeFilesLines
* Moved scipy directory to numpyTravis Oliphant2006-01-0412-25813/+0
|
* Added compare to dtypedescr and typeNA dictTravis Oliphant2006-01-041-1/+14
|
* Forced fields to be a proxy object (read-only from Python) and added ability ↵Travis Oliphant2006-01-032-34/+76
| | | | to document dynamically object attributes.
* Added UIntXX inplace of UintXX. Added Bool typeTravis Oliphant2006-01-021-7/+15
|
* Correct sort documentationCharles Harris2006-01-011-2/+2
|
* Added capability to add docstrings to new types and builtin functions or ↵Travis Oliphant2006-01-011-4/+46
| | | | methods after compilation. Doc strings can be moved from C-code into a separate Python module and added as needed.
* Added mergesorts for STRING and UNICODE and exposed lexsortTravis Oliphant2006-01-012-18/+110
|
* Added lexicographic sort.Travis Oliphant2006-01-012-5/+182
|
* Added 1-d indexing speed-ups by going through the array iterator when ↵Travis Oliphant2005-12-311-32/+73
| | | | fancy-indexing is needed. Also added bug-fixes to ma.py from Sourceforge.
* Fix nasty corner-case.Travis Oliphant2005-12-311-2/+4
|
* Fixed conversion from string to number typesTravis Oliphant2005-12-312-6/+13
|
* Just changed the order of source-codeTravis Oliphant2005-12-311-87/+96
|
* Added other sort methods (heap, merge)Travis Oliphant2005-12-314-46/+340
|
* Fixed bug..Travis Oliphant2005-12-311-3/+3
|
* Added complex sorting functions as well.Travis Oliphant2005-12-311-15/+19
|
* Fixed bug in ma.py and added fast quicksorts.Travis Oliphant2005-12-312-9/+141
|
* Adding type-specific sorting functions.Travis Oliphant2005-12-314-9/+213
|
* Updated PyArray_ArgSort to allow future sorting choices.Travis Oliphant2005-12-302-2/+2
|
* Fix inplace sorting along other dimension.Travis Oliphant2005-12-301-1/+3
|
* Changed sort to be in-placeTravis Oliphant2005-12-301-34/+29
|
* Changed sort to in-place --- uses copy for now.Travis Oliphant2005-12-302-46/+91
|
* Fixed up chararray a bit.Travis Oliphant2005-12-292-4/+3
|
* Remove special method names for void scalar typesTravis Oliphant2005-12-291-130/+23
|
* Improvements to nested records.Travis Oliphant2005-12-293-23/+101
|
* Don't set fields attribute in record type (get it from dtypedescr).Travis Oliphant2005-12-292-16/+15
|
* Fix so that anytime fields are defined void array-scalars don't copy data.Travis Oliphant2005-12-291-6/+10
|
* Improved void array-scalar type so that it has named-field accessTravis Oliphant2005-12-292-35/+169
|
* 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-262-4/+4
|
* Don't define extra variables if we don't use them.Travis Oliphant2005-12-261-1/+2
|
* Fix so that array can be used to construct default record arrays.Travis Oliphant2005-12-262-7/+15
|
* Changed rtype to dtype in reduce for consistency.Travis Oliphant2005-12-262-48/+48
|
* Moved C++ like variable declarations to start of function to allow ↵chanley2005-12-191-2/+2
| | | | scipy_core to build on Solaris using native compilers.
* Fixed use of free instead of _pya_free. Changed back to use system malloc ↵Travis Oliphant2005-12-171-1/+1
| | | | by default.
* Fixed uses of malloc to use Python Memory allocator if desired.Travis Oliphant2005-12-175-55/+55
|
* Updated convertcode. Added NOTSWAPPED flag as a possible input to ↵Travis Oliphant2005-12-161-4/+15
| | | | PyArray_FromAny to simplify forcing a machine byte-order array.
* Remove silly return from array_flatten.Travis Oliphant2005-12-161-2/+1
|
* Minor improvement to dtypedescr printing...Travis Oliphant2005-12-151-1/+14
|
* Added default conversion from array_descr style lists in dtypedescr __new__ ↵Travis Oliphant2005-12-152-16/+73
| | | | method. Added a default representation for data-type descriptor objects using the typestring (if no fields) or the array_descr representation if fields are present.
* Added support to consume the array_descr protocol.:Travis Oliphant2005-12-151-11/+89
|
* Clean up more swap references.Travis Oliphant2005-12-153-11/+15
|
* Set Py_None in builtin fields later.Travis Oliphant2005-12-151-2/+11
|
* Fixed oversight of saving the flags.Travis Oliphant2005-12-141-1/+1
|
* Made names more consistent, fixed byteorder for recarraysTravis Oliphant2005-12-144-6/+10
|
* Fixed ignorance of byteorder in PyArray_CastToTypeTravis Oliphant2005-12-141-4/+6
|
* Fix array interface exporting --- set the NOTSWAPPED flag.Travis Oliphant2005-12-141-0/+1
|
* Removed NOTSWAPPED flag as it is more aptly handled by the ↵Travis Oliphant2005-12-145-283/+359
|\ | | | | | | data-type-descriptor object -- PyArray_ISNOTSWAPPED(ap) is still a useful command.
| * Added newbyteorder methods.Travis Oliphant2005-12-144-16/+171
| |
| * Removed swap paramterTravis Oliphant2005-12-145-267/+185
|/
* Fixed error. Added byteorder attribute and allow byte-order prefix in ↵Travis Oliphant2005-12-144-9/+25
| | | | string->dtypedescr conversions.