diff --git a/src/basics/matrix.hh b/src/basics/matrix.hh index 5e7682f..22e1f1c 100644 --- a/src/basics/matrix.hh +++ b/src/basics/matrix.hh @@ -46,12 +46,15 @@ struct Matrix /** Value accessor. Get the ij'th item. */ Double& operator()(UInt i, UInt j); - /** Scalar multiplication */ + /** + * @defgroup Scalar multiplication + * @{ + */ Matrix operator*(const Double& rhs) const; Matrix& operator*=(const Double& rhs); - Matrix operator/(const Double& rhs) const; Matrix& operator/=(const Double& rhs); + /** @} */ /** Matrix multiplication */ template