Computing eigenvalues and eigenvectors of two symbolic matrices
조회 수: 6 (최근 30일)
이전 댓글 표시
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)
답변 (1개)
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.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!