例2.51 求下列矩阵的特征值呵特征向量的符号解

点击查看代码
import numpy as np
import sympy as sp
a = np.identity(4)  #单位矩阵的另一种写法
b = np.rot90(a)
c = sp.Matrix(b)
print('特征值为:', c.eigenvals())
print('特征向量为:\n', c.eigenvects())


print("学号:2023310143004")

posted on 2024-09-09 22:38  黄元元  阅读(7)  评论(0编辑  收藏  举报