Improve doc of special math functions

This commit is contained in:
Gael Guennebaud
2016-05-20 14:18:48 +02:00
parent 0ba32f99bd
commit c028d96089
4 changed files with 51 additions and 12 deletions

View File

@@ -317,13 +317,18 @@ polygamma(const EIGEN_CURRENT_STORAGE_BASE_CLASS<DerivedN> &n) const
}
#endif
/** \cpp11 \returns an expression of the coefficient-wise zeta function.
/** \returns an expression of the coefficient-wise zeta function.
*
* It returns the Riemann zeta function of two arguments \c *this and \a q:
*
* \param *this is the exposent, it must be > 1
* \param q is the shift, it must be > 0
*
* \note This function supports only float and double scalar types. To support other scalar types, the user has
* to provide implementations of zeta(T,T) for any scalar type T to be supported.
*
* This method is an alias for zeta(*this,q);
*
* \sa Eigen::zeta()
*/
template<typename DerivedQ>