Python| Numpy np.triu_indices
在np.triu_indices()
方法的帮助下,我们可以使用np.triu_indices()
() 方法获取 [n, m] 数组的上三角形的索引。
Syntax : np.triu_indices(n, m)
Return : Return the indices for the upper triangle.
示例 #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)