sympy.eye()方法
利用sympy.eye()方法,我们可以利用sympy.eye()方法找到单位矩阵。
语法:sympy.eye()
返回:返回一个单位矩阵。
sympy.eye()方法 例# 1:
在本例中,我们可以看到,通过使用sympy.eye()方法,我们能够找到具有nxn维的单位矩阵,其中n将作为参数传递。
# import sympy
from sympy import *
# Use sympy.eye() method
mat = eye(3)
print(mat)
Output :
Matrix([
[1, 0, 0],
[0, 1, 0],
[0, 0, 1]])
sympy.eye()方法 例# 2:
# import sympy
from sympy import *
# Use sympy.eye() method
mat = eye(5)
print(mat)
Output :
Matrix([
[1, 0, 0, 0, 0],
[0, 1, 0, 0, 0],
[0, 0, 1, 0, 0],
[0, 0, 0, 1, 0],
[0, 0, 0, 0, 1]])