summaryrefslogtreecommitdiff
path: root/scipy/base/ma.py
Commit message (Collapse)AuthorAgeFilesLines
* Moved scipy directory to numpyTravis Oliphant2006-01-041-2062/+0
|
* fixed sf bug 1395646sasha2006-01-041-2/+2
|
* Added 1-d indexing speed-ups by going through the array iterator when ↵Travis Oliphant2005-12-311-2/+28
| | | | fancy-indexing is needed. Also added bug-fixes to ma.py from Sourceforge.
* Added other sort methods (heap, merge)Travis Oliphant2005-12-311-1/+1
|
* Fixed bug in ma.py and added fast quicksorts.Travis Oliphant2005-12-311-1/+1
|
* Fixed problems revealed by pychecker.Travis Oliphant2005-12-301-1/+1
|
* Added an mlab so that there is one file to replace the old MLab functionality.Travis Oliphant2005-12-281-2/+1
|
* Changed .toscalar() method to .item()Travis Oliphant2005-12-261-2/+2
|
* Use amax and amin in ma.pyTravis Oliphant2005-12-081-4/+5
|
* Fixed 64-bit problemTravis Oliphant2005-12-061-1/+2
|
* Closed a few more leaks.Travis Oliphant2005-11-141-1/+2
|
* Added Paul's enhanced masked arrays.Travis Oliphant2005-11-091-472/+435
|
* EJS: Patch to use proper True and False values rather than 1 and 0. This ↵edschofield2005-10-221-43/+43
| | | | | | | | | | | | allows stricter type checking when we expect a boolean value to prevent the user shooting himself in the foot. Example: >>> a = zeros(1,2,3) used to succeed, creating an array of shape (1,), dtype 2, and fortran=True, which was probably not intended. It now raises a TypeError. [The user probably wants something else, like zeros((1,2,3)).]
* Fixing some array scalar inconsistencies.Travis Oliphant2005-09-191-55/+11
|
* Adding core scipy functionsTravis Oliphant2005-09-191-77/+92
|
* Converting masked arraysTravis Oliphant2005-09-191-72/+36
|
* Added ma hook.Travis Oliphant2005-09-151-0/+2136