Computing eigenvalues and eigenvectors of two symbolic matrices

9 ビュー (過去 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 件のコメント
FAWAZ FAREAD AL BAKRI
FAWAZ FAREAD AL BAKRI 2024 年 3 月 15 日
5 by 5
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 Center および File ExchangeLinear Algebra についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by