Computing eigenvalues and eigenvectors of two symbolic matrices
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
FAWAZ FAREAD AL BAKRI
el 15 de Mzo. de 2024
Respondida: Christine Tobler
el 18 de Mzo. de 2024
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 comentarios
Torsten
el 16 de Mzo. de 2024
Editada: Torsten
el 16 de Mzo. de 2024
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.
Respuestas (1)
Christine Tobler
el 18 de Mzo. de 2024
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 comentarios
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!