原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.identity.html
校对:(虚位以待)
numpy.
identity
(n, dtype=None)[source]返回身份数组。
身份数组是一个正方形数组,在主对角线上有一个数组。
参数: | n:int
dtype:数据类型,可选
|
---|---|
返回: | out:ndarray
|
例子
>>> np.identity(3)
array([[ 1., 0., 0.],
[ 0., 1., 0.],
[ 0., 0., 1.]])