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


Python numpy.ma.ids()用法及代码示例


借助numpy.ma.ids()方法,我们可以通过使用获得具有数据的掩码数组的地址numpy.ma.ids()方法。

用法: numpy.ma.ids(array, mask)
返回:Return the address of masked array.

范例1:
在这个例子中,我们可以通过使用numpy.ma.ids()方法,我们能够获得目标蒙版数组的地址。


# import numpy.ma 
import numpy.ma as ma 
  
# using numpy.ma.ids() method 
gfg = ma.array([1, 2, 4, 8], mask =[1, 0, 0, 1]) 
  
print(gfg.ids())

输出:

(2172543392448, 2172542026240)

范例2:

# import numpy.ma 
import numpy.ma as ma 
  
# using numpy.ma.ids() method 
gfg = ma.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]],  
         mask =[[1, 0, 0], [0, 1, 0], [0, 0, 1]]) 
  
print(gfg.ids()) 
print(gfg)

输出:

(2172299359856, 2172543392224)

masked_array(
data=[[-, 2, 3],
[4, -, 6],
[7, 8, -]],
mask=[[ True, False, False],
[False, True, False],
[False, False, True]],
fill_value=999999)



相关用法


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