numpy.ma.masked_not_equal #
- 嘛。masked_not_equal ( x , value , copy = True ) [来源] #
屏蔽不等于给定值的数组。
此函数是 的快捷方式
masked_where
, 条件= (x != value)。也可以看看
masked_where
满足条件的掩码。
例子
>>> 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)