原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.tri.html
校对:(虚位以待)
numpy.
tri
(N, M=None, k=0, dtype=<type 'float'>)[source]数组,其中一个在给定的对角线和在其他地方零。
参数: | N:int
M:int,可选
k:int,可选
dtype:dtype,可选
|
---|---|
返回: | tri:形状的引号(N,M)
|
例子
>>> 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.]])