gpt4 book ai didi

python - 具有变量的矩阵的 Sympy 特征值

转载 作者:行者123 更新时间:2023-12-01 00:07:06 25 4
gpt4 key购买 nike

我在 Python Sympy 中使用来计算带有变量的矩阵 A 的特征值(例如)。有谁知道如何计算这样的矩阵的特征值?命令 A.eigenvals() 不起作用。例如下面的代码:

x = symbols("x")
A = Array([[x, x], [x, x]])
A.eigenvals()
AttributeError: 'ImmutableDenseNDimArray' object has no attribute 'eigenvals'

最佳答案

使用矩阵而不是数组:

In [6]: Matrix([[x, x], [x, x]]).eigenvals()                                                                                                   
Out[6]: {0: 1, 2⋅x: 1}

关于python - 具有变量的矩阵的 Sympy 特征值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59899881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com