Use stableNorm in ComplexEigenSolver.

This commit is contained in:
Antonio Sánchez 2024-01-29 23:46:23 +00:00 committed by Rasmus Munk Larsen
parent dd71c23e23
commit 0f0c76dc29

View File

@ -292,7 +292,7 @@ void ComplexEigenSolver<MatrixType>::doComputeEigenvectors(RealScalar matrixnorm
m_eivec.noalias() = m_schur.matrixU() * m_matX;
// .. and normalize the eigenvectors
for (Index k = 0; k < n; k++) {
m_eivec.col(k).normalize();
m_eivec.col(k).stableNormalize();
}
}