本文简要介绍 python 语言中 numpy.tril
的用法。
用法:
numpy.tril(m, k=0)
数组的下三角形。
返回一个数组的副本,其元素高于k-th 对角线归零。对于具有
ndim
超过 2,tril
将适用于最后两个轴。- m: 数组,形状(…,M,N)
输入数组。
- k: 整数,可选
对角线高于其零元素。 k = 0(默认)是主对角线,k < 0 在其下方,k > 0 在上方。
- tril: ndarray,形状(...,M,N)
m 的下三角形,与 m 具有相同的形状和数据类型。
参数:
返回:
例子:
>>> np.tril([[1,2,3],[4,5,6],[7,8,9],[10,11,12]], -1) array([[ 0, 0, 0], [ 4, 0, 0], [ 7, 8, 0], [10, 11, 12]])
>>> np.tril(np.arange(3*4*5).reshape(3, 4, 5)) array([[[ 0, 0, 0, 0, 0], [ 5, 6, 0, 0, 0], [10, 11, 12, 0, 0], [15, 16, 17, 18, 0]], [[20, 0, 0, 0, 0], [25, 26, 0, 0, 0], [30, 31, 32, 0, 0], [35, 36, 37, 38, 0]], [[40, 0, 0, 0, 0], [45, 46, 0, 0, 0], [50, 51, 52, 0, 0], [55, 56, 57, 58, 0]]])
相关用法
- Python numpy tril_indices用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。