diff --git a/Eigen/src/Cholesky/LLT.h b/Eigen/src/Cholesky/LLT.h index 685f0b01e..89e8d98cb 100644 --- a/Eigen/src/Cholesky/LLT.h +++ b/Eigen/src/Cholesky/LLT.h @@ -306,7 +306,7 @@ template<> struct llt_inplace static void rankUpdate(MatrixType& mat, const VectorType& vec) { Transpose matt(mat); - return llt_inplace::rankUpdate(matt, vec); + return llt_inplace::rankUpdate(matt, vec.conjugate()); } };