原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.eye.html
校对:(虚位以待)
numpy.
eye
(N, M=None, k=0, dtype=<type 'float'>)[source]返回一个2-D数组,其中一个在对角线上,零在其他地方。
参数: | N:int
M:int,可选
k:int,可选
dtype:数据类型,可选
|
---|---|
返回: | I:形状的数组(N,M)
|
例子
>>> np.eye(2, dtype=int)
array([[1, 0],
[0, 1]])
>>> np.eye(3, k=1)
array([[ 0., 1., 0.],
[ 0., 0., 1.],
[ 0., 0., 0.]])