當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。