From b5c87084afaef42b2d058f68091be31988a6a874 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:08:07 +0900 Subject: Imported Upstream version 1.64.0 Change-Id: Id9212edd016dd55f21172c427aa7894d1d24148b Signed-off-by: DongHun Kwak --- .../impl/non_coherent__idp417084144.html | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 doc/html/boost/accumulators/impl/non_coherent__idp417084144.html (limited to 'doc/html/boost/accumulators/impl/non_coherent__idp417084144.html') diff --git a/doc/html/boost/accumulators/impl/non_coherent__idp417084144.html b/doc/html/boost/accumulators/impl/non_coherent__idp417084144.html new file mode 100644 index 0000000000..eb15055e61 --- /dev/null +++ b/doc/html/boost/accumulators/impl/non_coherent__idp417084144.html @@ -0,0 +1,86 @@ + + + + +Struct template non_coherent_tail_mean_impl + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+
+
+

Struct template non_coherent_tail_mean_impl

+

boost::accumulators::impl::non_coherent_tail_mean_impl — Estimation of the (non-coherent) tail mean based on order statistics (for both left and right tails)

+
+

Synopsis

+
// In header: <boost/accumulators/statistics_fwd.hpp>
+
+template<typename Sample, typename LeftRight> 
+struct non_coherent_tail_mean_impl : public accumulator_base {
+  // construct/copy/destruct
+  non_coherent_tail_mean_impl(dont_care);
+
+  // public member functions
+  template<typename Args> result_type result(Args const &) const;
+};
+
+

Description

+

An estimation of the non-coherent tail mean is given by the mean of the smallest samples (left tail) or the mean of the largest samples (right tail), being the total number of samples and the quantile level:

+
+

Equation 1.22. 

+
+
+


+
+

Equation 1.23. 

+
+
+


+

It thus requires the caching of at least the smallest or the largest samples.

+

+

+
+

+non_coherent_tail_mean_impl + public + construct/copy/destruct

+
  1. non_coherent_tail_mean_impl(dont_care);
+
+
+

+non_coherent_tail_mean_impl public member functions

+
  1. template<typename Args> result_type result(Args const & args) const;
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + -- cgit v1.2.3