summaryrefslogtreecommitdiff
path: root/scipy/base
Commit message (Collapse)AuthorAgeFilesLines
* Moved scipy directory to numpyTravis Oliphant2006-01-0462-41041/+0
|
* Added compare to dtypedescr and typeNA dictTravis Oliphant2006-01-042-6/+31
|
* fixed sf bug 1395646sasha2006-01-042-3/+20
|
* Forced fields to be a proxy object (read-only from Python) and added ability ↵Travis Oliphant2006-01-033-35/+77
| | | | to document dynamically object attributes.
* Added UIntXX inplace of UintXX. Added Bool typeTravis Oliphant2006-01-023-9/+21
|
* 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-013-19/+111
|
* Added lexicographic sort.Travis Oliphant2006-01-014-6/+184
|
* Added 1-d indexing speed-ups by going through the array iterator when ↵Travis Oliphant2005-12-312-34/+101
| | | | 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-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
|