numpy.ma.masked_less_equal#
- ma.masked_less_equal(x, value, copy=True)[源代码]#
掩盖数组中小于或等于给定值的位置.
此函数是
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_less_equal(a, 2) masked_array(data=[--, --, --, 3], mask=[ True, True, True, False], fill_value=999999)