diff options
Diffstat (limited to 'statistics')
-rw-r--r-- | statistics/chisq.hpp | 2 | ||||
-rw-r--r-- | statistics/cstat.hpp | 2 | ||||
-rw-r--r-- | statistics/leastsq.hpp | 12 |
3 files changed, 8 insertions, 8 deletions
diff --git a/statistics/chisq.hpp b/statistics/chisq.hpp index 7c38b4e..3dff92d 100644 --- a/statistics/chisq.hpp +++ b/statistics/chisq.hpp @@ -14,7 +14,7 @@ namespace opt_utilities {
/**
- chi-square statistic
+ \brief chi-square statistic
\tparam Ty the return type of model
\tparam Tx the type of the self-var
\tparam Tp the type of model parameter
diff --git a/statistics/cstat.hpp b/statistics/cstat.hpp index 45e2920..ef1fa12 100644 --- a/statistics/cstat.hpp +++ b/statistics/cstat.hpp @@ -12,7 +12,7 @@ namespace opt_utilities {
/**
- c-statistic, max-likelihood method
+ \brief c-statistic, max-likelihood method
\tparam Ty the return type of model
\tparam Tx the type of the self-var
\tparam Tp the type of model parameter
diff --git a/statistics/leastsq.hpp b/statistics/leastsq.hpp index 6ac0adc..146a069 100644 --- a/statistics/leastsq.hpp +++ b/statistics/leastsq.hpp @@ -14,12 +14,12 @@ namespace opt_utilities {
/**
- least-square statistic
- \tparam Ty the return type of model
- \tparam Tx the type of the self-var
- \tparam Tp the type of model parameter
- \tparam Ts the type of the statistic
- \tparam Tstr the type of the string used
+ \brief least-square statistic
+ \tparam Ty the return type of model
+ \tparam Tx the type of the self-var
+ \tparam Tp the type of model parameter
+ \tparam Ts the type of the statistic
+ \tparam Tstr the type of the string used
*/
template<typename Ty,typename Tx,typename Tp,typename Ts,typename Tstr>
class leastsq
|