Scalar multiplication Doxygen group

This commit is contained in:
Eryn Wells 2014-08-09 08:31:37 -07:00
parent cf57dfc51a
commit 8ccfbc0498

View file

@ -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<N,M> operator*(const Double& rhs) const;
Matrix<N,M>& operator*=(const Double& rhs);
Matrix<N,M> operator/(const Double& rhs) const;
Matrix<N,M>& operator/=(const Double& rhs);
/** @} */
/** Matrix multiplication */
template<UInt P>