Skip to main content

GetSymEigenValues_

This subroutine calculates eigenvalues of a symmetric matrix.

caution

In this routine matrix mat will be destroyed. If you want to preserve mat, then call GetSymEigenValues.

INTERFACE
MODULE SUBROUTINE GetSymEigenValues_(mat, eigenValues)
REAL(DFP), INTENT(INOUT) :: mat(:, :)
REAL(DFP), INTENT(OUT) :: eigenValues(:)
END SUBROUTINE GetSymEigenValues_
END INTERFACE