借助np.triu_indices()
方法,我們可以通過使用[n,m]數組的上三角獲得索引np.triu_indices()
方法。
用法: np.triu_indices(n, m)
返回:返回上三角的索引。
範例1:
在這個例子中,我們可以通過使用np.triu_indices()
方法,我們可以使用此方法獲得[n,m]數組上三角的索引。
# import numpy and triu_indices
import numpy as np
# using np.triu_indices() method
gfg = np.triu_indices(2, 3)
print(gfg)
輸出:
(array([], dtype = int64), array([], dtype = int64))
範例2:
# import numpy and triu_indices
import numpy as np
# using np.triu_indices() method
gfg = np.triu_indices(4)
print(gfg)
輸出:
array([], dtype = int64)
相關用法
- Python Numpy numpy.ndarray.__divmod__()用法及代碼示例
- Python Numpy numpy.ndarray.__invert__()用法及代碼示例
- Python Numpy numpy.ndarray.__mod__()用法及代碼示例
- Python Numpy numpy.ndarray.__floordiv__()用法及代碼示例
- Python Numpy numpy.ndarray.__add__()用法及代碼示例
- Python Numpy numpy.ndarray.__sub__()用法及代碼示例
- Python Numpy numpy.ndarray.__mul__()用法及代碼示例
- Python Numpy numpy.ndarray.__pow__()用法及代碼示例
- Python Numpy numpy.ndarray.__or__()用法及代碼示例
- Python Numpy numpy.ndarray.__and__()用法及代碼示例
- Python Numpy numpy.ndarray.__xor__()用法及代碼示例
- Python Numpy numpy.ndarray.__iadd__()用法及代碼示例
- Python Numpy numpy.ndarray.__isub__()用法及代碼示例
- Python Numpy numpy.ndarray.__imul__()用法及代碼示例
- Python Numpy numpy.ndarray.__ne__()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy np.triu_indices。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。