Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template with_p_square_cumulative_distribution_weighted_median_impl

boost::accumulators::impl::with_p_square_cumulative_distribution_weighted_median_impl — Median estimation for weighted samples based on the cumulative distribution estimator.

Synopsis

// In header: <boost/accumulators/statistics/weighted_median.hpp>

template<typename Sample, typename Weight> 
struct with_p_square_cumulative_distribution_weighted_median_impl : public  {
  // types
  typedef          ;
  typedef  ;     
  typedef                      ; 
  typedef                     ;     
  typedef                                                              ;    

  // construct/copy/destruct
  ();

  // public member functions
   ();
  template<typename Args>  () ;
  template<typename Archive>  (, );
};

Description

The algorithm determines the first (leftmost) bin with a height exceeding 0.5. It returns the approximate horizontal position of where the cumulative distribution equals 0.5, based on a linear interpolation inside the bin.

with_p_square_cumulative_distribution_weighted_median_impl public construct/copy/destruct

  1. ();

with_p_square_cumulative_distribution_weighted_median_impl public member functions

  1.  ();
  2. template<typename Args>  ( args) ;
  3. template<typename Archive> 
       ( ar,  file_version);

PrevUpHomeNext