how to find eigenvalues using the determinant ?
조회 수: 37 (최근 30일)
이전 댓글 표시
Hello,
I have mass and stiffness matrices and i want to find the eigenfrequency using det(K-w^2*M)=0 while K and M are the matrices and w is the eigenvfrequencies.How can i change this equation into mode and getting w ?
댓글 수: 0
채택된 답변
Christine Tobler
2022년 11월 14일
The determinant should only be used explicitly to solve an eigenvalue problem for symbolic calculation (for example, when you solve a 2-by-2 problem by hand). In numeric computations, the determinant is not robust and not advised to use.
You can compute the eigenvalues and eigenvectors using the EIG function, [V, D] = eig(K, M). This gives you eigenvalues (diagonal of D) and eigenvectors (columns of V) of this problem. The matrices satisfy
norm(K*V-M*V*D) % == 0 up to round-off error
To get the w value you want, you simply take the square root of the eigenvalues, sqrt(diag(D)).
댓글 수: 0
추가 답변 (1개)
John D'Errico
2022년 11월 13일
편집: John D'Errico
2022년 11월 13일
This is a generalized eigenvalue problem. READ THE HELP FOR EIG. If you pass in both matrices, it still computes the eigenvalues.
Do you want to use the determinant? NO! Learn to use eig.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!