📜  Python| Numpy np.ma.common_fill_value() 方法

📅  最后修改于: 2022-05-13 01:55:03.094000             🧑  作者: Mango

Python| Numpy np.ma.common_fill_value() 方法

在 np.ma.common_fill_value() 方法的帮助下,如果使用np.ma.common_fill_value() np.ma.common_fill_value()方法,我们可以从两个掩码数组中获取公共填充值。

示例 #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)

输出 :

示例 #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)

输出 :