当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy np.ma.common_fill_value()用法及代码示例


借助np.ma.common_fill_value()方法,我们可以使用以下方法从两个蒙版数组中获取通用填充值:np.ma.common_fill_value()方法。

用法: np.ma.common_fill_value(array1, array2)
返回:Return the common filling value from both the arrays.

范例1:
在这个例子中np.ma.common_fill_value()方法,我们能够从两个蒙版数组中获取通用填充值。


# import numpy 
import numpy as np 
  
x = np.ma.array([1, 2, 3], fill_value = 1) 
y = np.ma.array([7, 8, 9], fill_value = 1) 
  
# using np.ma.common_fill_value() method 
gfg = np.ma.common_fill_value(x, y) 
  
print(gfg)

输出:

1

范例2:

# import numpy 
import numpy as np 
  
x = np.ma.array([[1, 2], [2, 1]], fill_value = 2) 
y = np.ma.array([[1, 5], [5, 1]], fill_value = 5) 
  
# using np.ma.common_fill_value() method 
gfg = np.ma.common_fill_value(x, y) 
  
print(gfg)

输出:

None



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.ma.common_fill_value() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。