-
numpy.ma.getmaskarray(arr)
[source] -
Return the mask of a masked array, or full boolean array of False.
Return the mask of
arr
as an ndarray ifarr
is aMaskedArray
and the mask is notnomask
, else return a full boolean array of False of the same shape asarr
.Parameters: arr : array_like
Input
MaskedArray
for which the mask is required.See also
Examples
12345678910111213>>>
import
numpy.ma as ma
>>> a
=
ma.masked_equal([[
1
,
2
],[
3
,
4
]],
2
)
>>> a
masked_array(data
=
[[
1
-
-
]
[
3
4
]],
mask
=
[[
False
True
]
[
False
False
]],
fill_value
=
999999
)
>>> ma.getmaskarray(a)
array([[
False
,
True
],
[
False
,
False
]], dtype
=
bool
)
Result when mask ==
nomask
1234567891011>>> b
=
ma.masked_array([[
1
,
2
],[
3
,
4
]])
>>> b
masked_array(data
=
[[
1
2
]
[
3
4
]],
mask
=
False
,
fill_value
=
999999
)
>>> >ma.getmaskarray(b)
array([[
False
,
False
],
[
False
,
False
]], dtype
=
bool
)
numpy.ma.getmaskarray()

2025-01-10 15:47:30
Please login to continue.