MATLAB: How can i solve this eigenvalue equation

eigenvalue

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?

Best Answer

hi
a=[1 2;5 6];
b=[3 6;7 8];
[V,D] = eig(a,b);
Are you looking for something similar?
Related Question