Scalar multiplication Doxygen group
This commit is contained in:
parent
cf57dfc51a
commit
8ccfbc0498
1 changed files with 5 additions and 2 deletions
|
@ -46,12 +46,15 @@ struct Matrix
|
||||||
/** Value accessor. Get the ij'th item. */
|
/** Value accessor. Get the ij'th item. */
|
||||||
Double& operator()(UInt i, UInt j);
|
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) const;
|
||||||
Matrix<N,M>& operator*=(const Double& rhs);
|
Matrix<N,M>& operator*=(const Double& rhs);
|
||||||
|
|
||||||
Matrix<N,M> operator/(const Double& rhs) const;
|
Matrix<N,M> operator/(const Double& rhs) const;
|
||||||
Matrix<N,M>& operator/=(const Double& rhs);
|
Matrix<N,M>& operator/=(const Double& rhs);
|
||||||
|
/** @} */
|
||||||
|
|
||||||
/** Matrix multiplication */
|
/** Matrix multiplication */
|
||||||
template<UInt P>
|
template<UInt P>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue