numpy.ma.masked_array.filled

masked_array.filled(fill_value=None)

Return a copy of self, where masked values are filled with a fill value.

If fill_value is None, MaskedArray.fill_value is used instead.

Parameters:

fill_value : scalar, optional

The value to use for invalid entries. Default is None.

Notes

The result is not a MaskedArray!

Examples

>>> x = np.ma.array([1,2,3,4,5], mask=[0,0,1,0,1], fill_value=-999)
>>> x.filled()
array([1, 2, -999, 4, -999])
>>> type(x.filled())
<type 'numpy.ndarray'>

Subclassing is preserved. This means that if the data part of the masked array is a matrix, filled returns a matrix:

>>> x = np.ma.array(np.matrix([[1, 2], [3, 4]]), mask=[[0, 1], [1, 0]])
>>> x.filled()
matrix([[     1, 999999],
        [999999,      4]])

This Page