diff --git a/docs/docs/algorithms.xml b/docs/docs/algorithms.xml index 5af44efb0..c69b06625 100644 --- a/docs/docs/algorithms.xml +++ b/docs/docs/algorithms.xml @@ -31,6 +31,11 @@ murmur_hash3 running_stats running_scalar_covariance + mean_sign_agreement + correlation + covariance + r_squared + mean_squared_error running_covariance random_subset_selector randomly_subsample @@ -295,6 +300,66 @@ + + + + mean_sign_agreement + dlib/statistics.h + dlib/statistics/statistics_abstract.h + + This is a function for computing the probability that + matching elements of two std::vectors have the same sign. + + + + + + + correlation + dlib/statistics.h + dlib/statistics/statistics_abstract.h + + This is a function for computing the correlation between + matching elements of two std::vectors. + + + + + + + covariance + dlib/statistics.h + dlib/statistics/statistics_abstract.h + + This is a function for computing the covariance between + matching elements of two std::vectors. + + + + + + + r_squared + dlib/statistics.h + dlib/statistics/statistics_abstract.h + + This is a function for computing the R squared coefficient between + matching elements of two std::vectors. + + + + + + + mean_squared_error + dlib/statistics.h + dlib/statistics/statistics_abstract.h + + This is a function for computing the mean squared error between + matching elements of two std::vectors. + + + diff --git a/docs/docs/term_index.xml b/docs/docs/term_index.xml index b51221a95..8f7bdac29 100644 --- a/docs/docs/term_index.xml +++ b/docs/docs/term_index.xml @@ -131,6 +131,11 @@ + + + + +