Computing eigenvalues and eigenvectors of two symbolic matrices

조회 수: 6 (최근 30일)
FAWAZ FAREAD AL BAKRI
FAWAZ FAREAD AL BAKRI 2024년 3월 15일
답변: Christine Tobler 2024년 3월 18일
Hello all,
How could I compute the generalized eigenvalues and eigenvectors of (A,B) matrices using MATLAB if both of them are symbolic?
[V,D] = eig(B,A);
where A & B are (5x5)
  댓글 수: 3
Torsten
Torsten 2024년 3월 16일
편집: Torsten 2024년 3월 16일
Not possible.
The symbolic eigenvalue computation is limited to the roots of polynomials of degree <= 4. The reason is that for polynomials of degree > 4, there is no explicit solution formula for their roots - only in special cases.

댓글을 달려면 로그인하십시오.

답변 (1개)

Christine Tobler
Christine Tobler 2024년 3월 18일
eig does not support the two-input syntax for symbolic. For the call eig(B, A), if A is invertible you can instead solve eig(A\B).
About the matrix size of the input, you can call eig for sizes greater than 4, although this will not have an explicit solution outside of special cases.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by