MATLAB: How can I solve the following equation ([K]-t[G])w=0

eigen value

how can I solve the following equation ([K]-t[G]){w}=0
where t is a eigen value

Best Answer

help eig
E = eig(A,B) is a vector containing the generalized eigenvalues
of square matrices A and B.
[V,D] = eig(A,B) produces a diagonal matrix D of generalized
eigenvalues and a full matrix V whose columns are the
corresponding eigenvectors so that A*V = B*V*D.
Hope this helps.
Thank you for formally accepting m answer.
Greg
Related Question