numpy.ma.masked_not_equal#

ma.masked_not_equal(x, value, copy=True)[source]#

等于给定值的地方掩盖数组。

此函数是 masked_where 的快捷方式,其中 condition = (x != value)。

另请参阅

masked_where

在满足条件的地方进行掩盖。

示例

>>> import numpy as np
>>> import numpy.ma as ma
>>> a = np.arange(4)
>>> a
array([0, 1, 2, 3])
>>> ma.masked_not_equal(a, 2)
masked_array(data=[--, --, 2, --],
             mask=[ True,  True, False,  True],
       fill_value=999999)