diff --git a/src/Math/Complex.h b/src/Math/Complex.h index 4d46217b1..64773b217 100644 --- a/src/Math/Complex.h +++ b/src/Math/Complex.h @@ -306,7 +306,7 @@ template class Complex { * @brief Conjugated complex number * * @f[ - * \overline c = a - ib + * c^* = a - ib * @f] */ inline Complex conjugated() const { @@ -318,7 +318,7 @@ template class Complex { * * See invertedNormalized() which is faster for normalized * complex numbers. @f[ - * c^{-1} = \frac{\overline c}{|c|^2} = \frac{\overline c}{c \cdot c} + * c^{-1} = \frac{c^*}{|c|^2} = \frac{c^*}{c \cdot c} * @f] */ inline Complex inverted() const { @@ -330,7 +330,7 @@ template class Complex { * * Equivalent to conjugated(). Expects that the complex number is * normalized. @f[ - * c^{-1} = \frac{\overline c}{c \overline c} = \frac{\overline c}{a^2 + b^2} = \overline c + * c^{-1} = \frac{c^*}{c \cdot c} = c^* * @f] * @see inverted() */