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/weighted_exte_idp545050176.html | 83 ---------------------- 1 file changed, 83 deletions(-) delete mode 100644 doc/html/boost/accumulators/impl/weighted_exte_idp545050176.html (limited to 'doc/html/boost/accumulators/impl/weighted_exte_idp545050176.html') diff --git a/doc/html/boost/accumulators/impl/weighted_exte_idp545050176.html b/doc/html/boost/accumulators/impl/weighted_exte_idp545050176.html deleted file mode 100644 index a60cabf2e5..0000000000 --- a/doc/html/boost/accumulators/impl/weighted_exte_idp545050176.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - -Struct template weighted_extended_p_square_impl - - - - - - - - - - - - - - - -
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
-
-
-PrevUpHomeNext -
-
-
-
-

Struct template weighted_extended_p_square_impl

-

boost::accumulators::impl::weighted_extended_p_square_impl — Multiple quantile estimation with the extended algorithm for weighted samples.

-
-

Synopsis

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

Description

-

This version of the extended algorithm extends the extended algorithm to support weighted samples. The extended algorithm dynamically estimates several quantiles without storing samples. Assume that quantiles are to be estimated. Instead of storing the whole sample cumulative distribution, the algorithm maintains only principal markers and middle markers, whose positions are updated with each sample and whose heights are adjusted (if necessary) using a piecewise-parablic formula. The heights of the principal markers are the current estimates of the quantiles and are returned as an iterator range.

-

For further details, see

-

K. E. E. Raatikainen, Simultaneous estimation of several quantiles, Simulation, Volume 49, Number 4 (October), 1986, p. 159-164.

-

The extended algorithm generalizes the algorithm of

-

R. Jain and I. Chlamtac, The P^2 algorithm for dynamic calculation of quantiles and histograms without storing observations, Communications of the ACM, Volume 28 (October), Number 10, 1985, p. 1076-1085.

-

-

-
-

-weighted_extended_p_square_impl - public - construct/copy/destruct

-
  1. template<typename Args> weighted_extended_p_square_impl(Args const & args);
-
-
-

-weighted_extended_p_square_impl public member functions

-
    -
  1. template<typename Args> void operator()(Args const & args);
  2. -
  3. result_type result(dont_care) const;
  4. -
-
-
-
- - - -
-
-
-PrevUpHomeNext -
- - -- cgit v1.2.3