summaryrefslogtreecommitdiff
path: root/numpy/core/ma.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge Pierre's implementation of MaskedArray.Stefan van der Walt2007-12-151-2255/+0
|
* ma: output of .sum() should be scalar (patch by reggie,Stefan van der Walt2007-09-301-8/+9
| | | | closes ticket #557).
* Remove tests for inequality on unicode scalars --- not sure why they were ↵Travis Oliphant2007-05-221-3/+6
| | | | there in the first place. Fix bug in masked_array.
* Added most of patch from #422.Travis Oliphant2007-05-221-36/+5
|
* Allow Boolean mask indexing for 0-d arrays.Travis Oliphant2007-03-301-8/+0
|
* Correct the .args attribute of MAError. It needs to be a tuple. Python 2.5 ↵Robert Kern2007-01-191-1/+5
| | | | depends on this.
* clean up unused imports and bad whitespaceTim Leslie2007-01-091-2/+0
|
* Whitespace cleanup.Stefan van der Walt2007-01-081-4/+4
|
* Add itemset method to parallel item methodTravis Oliphant2006-09-131-4/+10
|
* Fix ticket #271 and turn default printing of warnings offTravis Oliphant2006-09-041-1/+5
|
* Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.productTravis Oliphant2006-08-291-2/+11
|
* Add axis arguments to various functions so as not to rely on the defaults.Travis Oliphant2006-08-291-1/+1
|
* Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy ↵Travis Oliphant2006-08-241-1/+0
| | | | space.
* add .abs() as a method on the array objectcookedm2006-08-231-0/+1
|
* Fix ticket #254 and allow defining NPY_NO_PREFIX instead of including ↵Travis Oliphant2006-08-181-2/+6
| | | | 'noprefix.h'
* Change default axis argument of average and several masked array functions. ↵Travis Oliphant2006-08-131-11/+11
| | | | Move old behaviors to compatibility layer.
* fix more argument lists for ma.py --- output arrays are ignored for masked ↵Travis Oliphant2006-08-101-3/+5
| | | | arrays
* Don't use masked output values for output arrayTravis Oliphant2006-08-101-3/+3
|
* More fixes to masked array support of output arrays. Travis Oliphant2006-08-101-20/+24
|
* Fix uses of nonzero and add flatnonzeroTravis Oliphant2006-08-051-3/+2
|
* Fix unnecessary use of NULL in scalar_value and remove tabs.Travis Oliphant2006-07-261-1/+1
|
* Fix ticket #175Travis Oliphant2006-07-181-1/+1
|
* Make .T == .transpose()Travis Oliphant2006-07-071-5/+1
|
* Remove .M .A .H attribute. Keep .T attribute as .transpose for >=2d. ↵Travis Oliphant2006-07-071-20/+11
| | | | Creates 2-d from 1-d and returns self for 0-d. Fix-up flag-checking when stride 0 is coupled with dim == 1
* Add .M .A .T .H attributes to MATravis Oliphant2006-07-061-0/+20
|
* Fix up failing tests.Travis Oliphant2006-07-021-0/+5
|
* Make the default array type float.Travis Oliphant2006-06-301-5/+4
|
* Cleaned up casting code to also handle broadcasting. Several SciPy tests ↵Travis Oliphant2006-06-221-1/+1
| | | | are still failing...
* Check-in name-space changes so that numpy.oldnumeric is the compatibility ↵Travis Oliphant2006-06-121-34/+34
| | | | module and numpy does not contain all of the names.
* Remove deprecated names from ma and tests.Travis Oliphant2006-06-021-10/+14
|
* fixed mask calculation in cum* methodssasha2006-04-071-2/+2
|
* more array methods in ma (thanks Pierre GM <pgmdevlist@mailcan.com>)sasha2006-04-061-8/+44
|
* Changed fortran= keywords to order= keywordsTravis Oliphant2006-03-241-5/+5
|
* Removed branches that use undefined "_wrapit"sasha2006-03-221-17/+6
|
* * More array methods thanks to Pierre GM <pgmdevlist@mailcan.com>sasha2006-03-221-7/+47
| | | | | * Added dtype argument to reduce
* remove 'from numerictypes import *'Tim Leslie2006-03-191-1/+1
|
* Run reindent.py (script distributed with Python) over the source to remove ↵cookedm2006-03-101-15/+15
| | | | extraneous whitespace
* Change error raise to warning when __array_() is called with no contextTravis Oliphant2006-03-101-4/+9
|
* removed checks for the mask shape; fixes ticket:19 by timlsasha2006-03-061-24/+0
|
* code cleanup for ma.py by timlsasha2006-03-061-49/+49
|
* fixed ma.nonzerosasha2006-03-051-1/+8
|
* made ma friendlier to pydocsasha2006-03-011-0/+2
|
* implemented ndim attributesasha2006-03-011-1/+4
|
* added rint ufunc and ndarray.roundsasha2006-02-241-0/+1
|
* fixed max and minsasha2006-02-181-2/+14
|
* support passing arrays with non-trivial mask to ufuncssasha2006-02-161-8/+14
|
* fixed alltrue and sometruesasha2006-01-261-2/+2
|
* take advantage of nomask=False_sasha2006-01-201-7/+4
|
* changed nomask from None to False_sasha2006-01-201-1/+1
|
* Made ma immune to a bug in choosesasha2006-01-201-14/+6
|