本文简要介绍 python 语言中 numpy.tril_indices
的用法。
用法:
numpy.tril_indices(n, k=0, m=None)
返回 (n, m) 数组的 lower-triangle 的索引。
- n: int
返回的索引对其有效的数组的行维度。
- k: 整数,可选
对角线偏移(详见
tril
)。- m: 整数,可选
-
返回数组对其有效的数组的列维度。默认情况下,m 等于 n。
- inds: 数组元组
三角形的索引。返回的元组包含两个数组,每个数组都有沿数组一维的索引。
参数:
返回:
注意:
例子:
计算两组不同的索引以访问 4x4 数组,一组用于从主对角线开始的下三角形部分,另一组从更右边的两个对角线开始:
>>> il1 = np.tril_indices(4) >>> il2 = np.tril_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[il1] array([ 0, 4, 5, ..., 13, 14, 15])
对于赋值:
>>> a[il1] = -1 >>> a array([[-1, 1, 2, 3], [-1, -1, 6, 7], [-1, -1, -1, 11], [-1, -1, -1, -1]])
这些几乎涵盖了整个阵列(主阵列右侧的两条对角线):
>>> a[il2] = -10 >>> a array([[-10, -10, -10, 3], [-10, -10, -10, -10], [-10, -10, -10, -10], [-10, -10, -10, -10]])
相关用法
- Python numpy tril用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy tri用法及代码示例
- Python numpy triu_indices用法及代码示例
- Python numpy triu用法及代码示例
- 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.tril_indices。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。