From 8ccfbc0498d7ee4c66a99ba8b12659b1c08ec865 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 9 Aug 2014 08:31:37 -0700 Subject: [PATCH] Scalar multiplication Doxygen group --- src/basics/matrix.hh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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