Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写自己的函数获取特征值和特征向量。我已经使用 QR 算法来提取特征值。如何使用对角特征值矩阵 D 和原始矩阵 A 获得特征向量?
如果您不想使用eig,可以像这样求解矩阵方程:
eig
V=zeros(size(A)); for i=1:length(A) V(:,i)=null(A-eye(size(A))*D(i,i)); end
您不需要特征值来获得特征向量。只需使用:
[V,D] = eig(A);