Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Struct template lazy_variance_impl

boost::accumulators::impl::lazy_variance_impl — Lazy calculation of variance.

Synopsis

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

template<typename Sample, typename MeanFeature> 
struct lazy_variance_impl : public accumulator_base {
  // types
  typedef numeric::functional::fdiv< Sample, std::size_t >::result_type result_type;

  // construct/copy/destruct
  lazy_variance_impl(dont_care);

  // public member functions
  template<typename Args> result_type result(Args const &) const;
  template<typename Archive> void serialize(Archive &, const unsigned int);
};

Description

Default sample variance implementation based on the second moment moment<2>, mean and count.

Equation 1.29. 


where

Equation 1.30. 


is the estimate of the sample mean and is the number of samples.

lazy_variance_impl public construct/copy/destruct

  1. lazy_variance_impl(dont_care);

lazy_variance_impl public member functions

  1. template<typename Args> result_type result(Args const & args) const;
  2. template<typename Archive> void serialize(Archive &, const unsigned int);

PrevUpHomeNext