Skip to main content

GetSymEigenValues

This subroutine calculates eigenvalues of a symmetric matrix.

note

In this routine a copy of matrix mat is formed and passed to Lapack library. If you do not want to save mat then please call GetSymEigenValues_

 INTERFACE
MODULE SUBROUTINE GetSymEigenValues(mat, eigenValues)
REAL(DFP), INTENT(IN) :: mat(:, :)
REAL(DFP), INTENT(OUT) :: eigenValues(:)
END SUBROUTINE GetSymEigenValues
END INTERFACE