用python计算矩阵特征值和特征向量

用python计算矩阵特征值和特征向量,第1张

import numpy as np

A = np.array([[1, -1, 3],

              [-5, 3, 9],

              [1, 0, -2]])

eigenvalue, featurevector = np.linalg.eig(A)

print(eigenvalue)

print(featurevector)


<<<
[-3.27491722 1. 4.27491722]
[[ 0.43401893 0.6882472 -0.33619158]
[ 0.83410767 0.6882472 0.94026843]
[-0.3404291 0.22941573 -0.05357705]]

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/716062.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-25
下一篇 2022-04-25

发表评论

登录后才能评论

评论列表(0条)

保存