numpy.ma.notmasked_edges()
函數查找沿軸的第一個和最後一個未屏蔽值的索引。
如果所有值都被屏蔽,則返回None。否則,返回兩個元組的列表,分別對應於第一個和最後一個未屏蔽值的索引。
用法: numpy.ma.notmasked_edges(arr, axis = None)
參數:
arr :[數組]輸入數組。
axis :[int,可選]沿其執行操作的軸。默認為無。
Return :[ndarray或list]起始索引和結束索引的數組,如果該數組中有任何被屏蔽的數據。如果數組中沒有屏蔽的數據,則edges是第一個索引和最後一個索引的列表。
代碼1:
# Python program explaining
# numpy.ma.notmasked_edges() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.arange(12).reshape((3, 4))
gfg = geek.ma.notmasked_edges(arr)
print (gfg)
輸出:
[ 0, 11]
代碼2:
# Python program explaining
# numpy.ma.notmasked_edges() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.arange(12).reshape((3, 4))
m = geek.zeros_like(arr)
m[1:, 1:] = 1
am = geek.ma.array(arr, mask = m)
gfg = geek.ma.notmasked_edges(am)
print (gfg)
輸出:
[0, 8]
相關用法
- Python Wand function()用法及代碼示例
- Python sum()用法及代碼示例
- Python hex()用法及代碼示例
- Python tell()用法及代碼示例
- Python dir()用法及代碼示例
- Python id()用法及代碼示例
- Python map()用法及代碼示例
- Python int()用法及代碼示例
- Python cmp()用法及代碼示例
- Python ord()用法及代碼示例
- Python now()用法及代碼示例
- Python oct()用法及代碼示例
- Python str()用法及代碼示例
- Python range()用法及代碼示例
- Python math.gcd()用法及代碼示例
- Python turtle.pen()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 numpy.ma.notmasked_edges() function | Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。