Changes between Version 4 and Version 5 of MaskedArray
- Timestamp:
- 01/12/06 15:01:12 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MaskedArray
v4 v5 3 3 MaskedArray is a numpy ndarray look-alike that allows one to keep track of missing values. 4 4 5 MaskedArray is implemented in numpy.core.mamodule. The numpy ma module is originally written5 MaskedArray is implemented in the [source:trunk/numpy/core/ma.py numpy.core.ma] module. The numpy ma module is originally written 6 6 for Numeric by Paul Dubois and adapted for numpy by Travis Oliphant and 7 7 (mainly) Paul Dubois. … … 16 16 * What should a single element indexing return for a masked element?[[BR]][[BR]] 17 17 As of changeset:1882, the answer is ma.masked. The singleton ma.masked is defined 18 in ma.pyas follows:18 in [source:tags/0.9.2/numpy/core/ma.py ma.py] as follows: 19 19 {{{ 20 20 #!python
