diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h b/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h index a429b3392..d7409371b 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h @@ -109,7 +109,7 @@ void MatrixFunctionAtomic::computeMu() { const MatrixType N = MatrixType::Identity(m_Arows, m_Arows) - m_Ashifted; VectorType e = VectorType::Ones(m_Arows); - N.template triangularView().solveInPlace(e); + N.template triangularView().solveInPlace(e); m_mu = e.cwiseAbs().maxCoeff(); }