How can I get eigenvalues of matrix using Apache Commons Math? I know there is 2 classes EigenDecomposition and QRDecomposition, but how to combine them to get eigenvalues?
How to calculate eigenvalues using QR method?
948 views Asked by Sevak.Avet At
2
There are 2 answers
0

You seem to confuse the QR decomposition with the QR eigenvalue algorithm.
The QR decomposition cannot give you the eigenvalues of a matrix, but it can be used as a component to a more complex algorithm that produce eigenvalues and eigenvectors.
Why combine them? QR can give you eigenvalues:
http://en.wikipedia.org/wiki/QR_algorithm