how can i solve this eigenvalue equation?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i have this equation: [a][w]=[b][w]
in which [a]=[1 2;5 6] and [b]=[3 6;7 8] and [w]=transpose([w1 ; w2])
how can i solve it in matlab?
0 commentaires
Réponse acceptée
Ankit
le 30 Sep 2019
hi
using eig command: https://de.mathworks.com/help/matlab/ref/eig.html
a=[1 2;5 6];
b=[3 6;7 8];
[V,D] = eig(a,b);
Are you looking for something similar?
2 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Mathematics and Optimization dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!