本文简要介绍 python 语言中 numpy.triu_indices
的用法。
用法:
numpy.triu_indices(n, k=0, m=None)
返回 (n, m) 数组的 upper-triangle 的索引。
- n: int
返回的索引对其有效的数组的大小。
- k: 整数,可选
对角线偏移(详见
triu
)。- m: 整数,可选
-
返回数组对其有效的数组的列维度。默认情况下,m 等于 n。
- inds: 元组,ndarrays 的 shape(2),shape(n)
三角形的索引。返回的元组包含两个数组,每个数组都有沿数组一维的索引。可用于切片形状(n,n)的ndarray。
参数:
返回:
注意:
例子:
计算两组不同的索引以访问 4x4 数组,一组用于从主对角线开始的上三角部分,一组从更右侧的两个对角线开始:
>>> iu1 = np.triu_indices(4) >>> iu2 = np.triu_indices(4, 2)
以下是它们如何与示例数组一起使用:
>>> a = np.arange(16).reshape(4, 4) >>> a array([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11], [12, 13, 14, 15]])
两者都用于索引:
>>> a[iu1] array([ 0, 1, 2, ..., 10, 11, 15])
对于赋值:
>>> a[iu1] = -1 >>> a array([[-1, -1, -1, -1], [ 4, -1, -1, -1], [ 8, 9, -1, -1], [12, 13, 14, -1]])
这些只覆盖了整个数组的一小部分(主数组右侧的两条对角线):
>>> a[iu2] = -10 >>> a array([[ -1, -1, -10, -10], [ 4, -1, -1, -10], [ 8, 9, -1, -1], [ 12, 13, 14, -1]])
相关用法
- Python numpy triu用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy tri用法及代码示例
- Python numpy tril用法及代码示例
- Python numpy tril_indices用法及代码示例
- Python numpy trace用法及代码示例
- Python numpy true_divide用法及代码示例
- Python numpy transpose用法及代码示例
- Python numpy trapz用法及代码示例
- Python numpy trunc用法及代码示例
- Python numpy testing.rundocs用法及代码示例
- Python numpy testing.assert_warns用法及代码示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代码示例
- Python numpy testing.assert_array_less用法及代码示例
- Python numpy testing.assert_raises用法及代码示例
- Python numpy testing.assert_almost_equal用法及代码示例
- Python numpy tile用法及代码示例
- Python numpy testing.assert_approx_equal用法及代码示例
- Python numpy tanh用法及代码示例
- Python numpy testing.assert_allclose用法及代码示例
- Python numpy testing.decorators.slow用法及代码示例
- Python numpy testing.suppress_warnings用法及代码示例
- Python numpy take用法及代码示例
- Python numpy testing.assert_string_equal用法及代码示例
- Python numpy testing.run_module_suite用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.triu_indices。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。