summaryrefslogtreecommitdiff
path: root/scipy/base
Commit message (Collapse)AuthorAgeFilesLines
* Added other sort methods (heap, merge)Travis Oliphant2005-12-317-50/+345
|
* 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-315-11/+144
|
* Adding type-specific sorting functions.Travis Oliphant2005-12-317-13/+235
|
* 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
|
* Fixed some other uses of sort method.Travis Oliphant2005-12-301-2/+5
|
* Changed sort to be in-placeTravis Oliphant2005-12-302-35/+30
|
* Changed sort to in-place --- uses copy for now.Travis Oliphant2005-12-306-54/+176
|
* Fixed importing _dotblas.Pearu Peterson2005-12-301-1/+1
|
* Moved scipy/lib/blasdot to scipy/basePearu Peterson2005-12-303-4/+1360
|
* Fixed mistake.Travis Oliphant2005-12-301-5/+2
|
* Fixed problems revealed by pychecker.Travis Oliphant2005-12-3016-39/+25
|
* Fixed problem with mod.Travis Oliphant2005-12-301-1/+1
|
* Added string initialization conversion to chararray.Travis Oliphant2005-12-291-10/+18
|
* Fixed up chararray a bit.Travis Oliphant2005-12-293-18/+22
|
* Added records unittest for fromfile method. Included file testdata.fits ↵chanley2005-12-292-1/+8
| | | | file for use in test.
* Remove special method names for void scalar typesTravis Oliphant2005-12-291-130/+23
|
* Improvements to nested records.Travis Oliphant2005-12-293-23/+101
|
* Changed some expected outputs in docstringsTravis Oliphant2005-12-291-4/+4
|
* Don't set fields attribute in record type (get it from dtypedescr).Travis Oliphant2005-12-293-22/+21
|
* 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
|
* Fixed use of byteorder.Travis Oliphant2005-12-281-1/+1
|
* Added an mlab so that there is one file to replace the old MLab functionality.Travis Oliphant2005-12-289-66/+208
|
* new test for records method fromarrayschanley2005-12-271-1/+11
|
* Changed .toscalar() method to .item()Travis Oliphant2005-12-2610-23/+22
|
* 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
|
* Renamed scipy.test module to scipy.testing. Clean up testing.Pearu Peterson2005-12-2614-102/+85
|
* Changed rtype to dtype in reduce for consistency.Travis Oliphant2005-12-263-61/+61
|
* Changed corerandom to random to reflect that it will not be 'supplanted' by ↵Travis Oliphant2005-12-261-2/+2
| | | | full scipy.
* Eliminate basic and move everything to corefft, corelinalg, or corerandomTravis Oliphant2005-12-254-10/+10
|
* Fix polynomial divisioncookedm2005-12-232-20/+27
|
* small change in poly1d docstringcookedm2005-12-211-2/+1
|
* p=poly1d([1,2,3], variable='lambda') will use 'lambda' as the variable in str(p)cookedm2005-12-212-5/+25
|
* Initial but working version of scipy.pkgload method.Pearu Peterson2005-12-201-1/+1
|
* 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-172-2/+2
| | | | by default.
* Fixed uses of malloc to use Python Memory allocator if desired.Travis Oliphant2005-12-176-59/+71
|
* Updated convertcode. Added NOTSWAPPED flag as a possible input to ↵Travis Oliphant2005-12-162-28/+15
| | | | PyArray_FromAny to simplify forcing a machine byte-order array.
* Moved dotblas back to scipy.corelib (scipy.base.numeric tries to import it)Pearu Peterson2005-12-161-1/+1
|
* Fixed _dotblas import.Pearu Peterson2005-12-161-1/+1
|
* Moved random back under basic and added basic to list of modules to import.Travis Oliphant2005-12-161-14/+14
|
* r1600@Blasphemy: kern | 2005-12-16 01:43:39 -0800Robert Kern2005-12-163-6/+4
| | | | Removed automatic importing of scipy.basic.* into the scipy namespace
* Remove silly return from array_flatten.Travis Oliphant2005-12-161-2/+1
|
* Added more macros for consistencyTravis Oliphant2005-12-151-0/+16
|
* 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.