numpy.ma.flatnotmasked_contiguous()函数| Python
numpy.ma.flatnotmasked_contiguous()函数在给定轴的掩码数组中查找连续的未掩码数据。
Syntax : numpy.ma.flatnotmasked_contiguous(arr)
Parameters :
arr : [ array_like] The input array.
Return : [slice_list ] A sorted sequence of slice objects (start index, end index).
代码#1:
Python3
# Python program explaining
# numpy.ma.flatnotmasked_contiguous() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.ma.arange(8)
gfg = geek.ma.flatnotmasked_contiguous(arr)
print (gfg)
Python3
# Python program explaining
# numpy.ma.flatnotmasked_contiguous() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.ma.arange(12)
gfg = geek.ma.flatnotmasked_contiguous(arr)
print (gfg)
输出 :
slice(0, 8, None)
代码#2:
Python3
# Python program explaining
# numpy.ma.flatnotmasked_contiguous() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.ma.arange(12)
gfg = geek.ma.flatnotmasked_contiguous(arr)
print (gfg)
输出 :
slice(0, 12, None)