📜  numpy 矩阵运算 |眼睛()函数

📅  最后修改于: 2022-05-13 01:54:42.356000             🧑  作者: Mango

numpy 矩阵运算 |眼睛()函数

numpy.matlib.eye()是另一个在 numpy 中进行矩阵运算的函数。它返回一个矩阵,其中对角线为 1,其他位置为 0。

代码#1:

# Python program explaining
# numpy.matlib.eye() function
  
# importing matrix library from numpy
import numpy as geek
import numpy.matlib
  
# desired 3 x 3 output matrix 
out_mat = geek.matlib.eye(3, k = 0) 
print ("Output matrix : ", out_mat) 
输出 :
Output matrix :  
[[ 1.  0.  0.]
 [ 0.  1.  0.]
 [ 0.  0.  1.]]

代码#2:

# Python program explaining
# numpy.matlib.eye() function
  
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
  
# desired 4 x 5 output matrix 
out_mat = geek.matlib.eye(n = 4, M = 5, k = 1, dtype = int) 
print ("Output matrix : ", out_mat) 
输出 :
Output matrix :  
[[0 1 0 0 0]
 [0 0 1 0 0]
 [0 0 0 1 0]
 [0 0 0 0 1]]