Python| sympy.Matrix.eigenvals() 方法
借助sympy.Matrix.eigenvals()方法,我们可以找到矩阵的特征值。
Syntax : sympy.Matrix().eigenvals()
Return : Return the eigen values of a matrix.
示例 #1:
在给定的示例中,我们可以看到 sympy.Matrix.eigenvals() 方法用于查找矩阵的特征值。
Python3
# Import all the methods from sympy
from sympy import *
# use the eigenvals() method for matrix
gfg_val = Matrix([[1, 2], [2, 1]]).eigenvals()
print(gfg_val)
Python3
from sympy import *
# use the eigenvals() method for matrix
gfg_val = Matrix([[1, 2], [2, 2]]).eigenvals()
print(gfg_val)
输出 :
{3: 1, -1: 1}
示例 #2:
Python3
from sympy import *
# use the eigenvals() method for matrix
gfg_val = Matrix([[1, 2], [2, 2]]).eigenvals()
print(gfg_val)
输出 :
{3/2 – sqrt(17)/2: 1, 3/2 + sqrt(17)/2: 1}