Changes between Version 4 and Version 5 of MaskedArray

Show
Ignore:
Timestamp:
01/12/06 15:01:12 (7 years ago)
Author:
sasha
Comment:

added wiki links to source code

Legend:

Unmodified
Added
Removed
Modified
  • MaskedArray

    v4 v5  
    33MaskedArray is a numpy ndarray look-alike that allows one to keep track of missing values. 
    44 
    5 MaskedArray is implemented in numpy.core.ma module.  The numpy ma module is originally written 
     5MaskedArray is implemented in the [source:trunk/numpy/core/ma.py numpy.core.ma] module.  The numpy ma module is originally written 
    66for Numeric by Paul Dubois and adapted for numpy by Travis Oliphant and 
    77(mainly) Paul Dubois. 
     
    1616   * What should a single element indexing return for a masked element?[[BR]][[BR]] 
    1717     As of changeset:1882, the answer is ma.masked. The singleton ma.masked is defined 
    18      in ma.py as follows: 
     18     in [source:tags/0.9.2/numpy/core/ma.py ma.py] as follows: 
    1919{{{ 
    2020#!python