本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。