numpy.ma.masked_less#

ma.masked_less(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(a, 2)
masked_array(data=[--, --, 2, 3],
             mask=[ True,  True, False, False],
       fill_value=999999)