本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。