how can i solve this eigenvalue equation?

1 次查看(过去 30 天)
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?

采纳的回答

Ankit
Ankit 2019-9-30
hi
a=[1 2;5 6];
b=[3 6;7 8];
[V,D] = eig(a,b);
Are you looking for something similar?

更多回答(1 个)

masoud jiryaei
masoud jiryaei 2019-9-30
yes
thankyou

类别

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