关于polyeig函数为什么polyeig(A,0,B)与polyeig(A,B)输出的结果不一样
조회 수: 1 (최근 30일)
이전 댓글 표시
채택된 답변
Abhijeet
2023년 3월 9일
Hi 定毅,
The command polyeig(A, 0, B) computes the eigenvalues of the matrix polynomial A - lambda*B evaluated at lambda=0. This is equivalent to computing the eigenvalues of the matrix A multiplied by the inverse of B.
The command polyeig(A, B) computes the eigenvalues of the matrix polynomial A - lambda*B.
The reason is that evaluating the matrix polynomial at different values of lambda can lead to very different results.
Thanks
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!