本文簡要介紹 python 語言中 numpy.tri
的用法。
用法:
numpy.tri(N, M=None, k=0, dtype=<class 'float'>, *, like=None)
一個數組,在給定對角線處和下方都有一個,在其他地方有零。
- N: int
數組中的行數。
- M: 整數,可選
數組中的列數。默認情況下,M 等於 N。
- k: 整數,可選
sub-diagonal 填充數組的位置和下方。 k = 0 是主對角線,而 k < 0 在其下方, k > 0 在其上方。默認值為 0。
- dtype: dtype,可選
返回數組的數據類型。默認為浮點數。
- like: array_like
允許創建非 NumPy 數組的引用對象。如果作為
like
傳入的類似數組支持__array_function__
協議,則結果將由它定義。在這種情況下,它確保創建一個與通過此參數傳入的數組對象兼容的數組對象。
- tri: 形狀的ndarray(N,M)
其下三角形在其他地方填充 1 和 0 的數組;換句話說
T[i,j] == 1
為j <= i + k
,否則為 0。
參數:
返回:
例子:
>>> np.tri(3, 5, 2, dtype=int) array([[1, 1, 1, 0, 0], [1, 1, 1, 1, 0], [1, 1, 1, 1, 1]])
>>> np.tri(3, 5, -1) array([[0., 0., 0., 0., 0.], [1., 0., 0., 0., 0.], [1., 1., 0., 0., 0.]])
相關用法
- Python numpy trim_zeros用法及代碼示例
- Python numpy triu_indices用法及代碼示例
- Python numpy triu用法及代碼示例
- 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.tri。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。