diff --git a/doc/QuickReference.dox b/doc/QuickReference.dox index 89a3c4322..e23ff7ce5 100644 --- a/doc/QuickReference.dox +++ b/doc/QuickReference.dox @@ -645,11 +645,11 @@ m3 -= s1 * m3.adjoint() * m1.selfadjointView();\endcode Rank 1 and rank K update: \n -\f$ upper(M_1) \mathrel{{+}{=}} s_1 M_2^* M_2 \f$ \n -\f$ lower(M_1) \mathbin{{-}{=}} M_2 M_2^* \f$ +\f$ upper(M_1) \mathrel{{+}{=}} s_1 M_2 M_2^* \f$ \n +\f$ lower(M_1) \mathbin{{-}{=}} M_2^* M_2 \f$ \n \code M1.selfadjointView().rankUpdate(M2,s1); -m1.selfadjointView().rankUpdate(m2.adjoint(),-1); \endcode +M1.selfadjointView().rankUpdate(M2.adjoint(),-1); \endcode Rank 2 update: (\f$ M \mathrel{{+}{=}} s u v^* + s v u^* \f$)