Python| numpy.ma.ids() 方法
借助numpy.ma.ids()
方法,我们可以使用numpy.ma.ids()
方法获取包含数据的掩码数组的地址。
Syntax : numpy.ma.ids(array, mask)
Return : 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)