Python| sympy.eye() 方法
借助sympy.eye()
方法,我们可以使用sympy.eye()
方法找到单位矩阵。
Syntax : sympy.eye()
Return : Return an identity matrix.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.eye()
方法,我们能够找到维度为 nxn 的单位矩阵,其中 n 将作为参数传递。
# import sympy
from sympy import *
# Use sympy.eye() method
mat = eye(3)
print(mat)
输出 :
Matrix([
[1, 0, 0],
[0, 1, 0],
[0, 0, 1]])
示例 #2:
# import sympy
from sympy import *
# Use sympy.eye() method
mat = eye(5)
print(mat)
输出 :
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]])