...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::accumulators::impl::covariance_impl — Covariance Estimator.
// In header: <boost/accumulators/statistics/covariance.hpp> template<typename Sample, typename VariateType, typename VariateTag> struct covariance_impl { // types typedef numeric::functional::average< Sample, std::size_t >::result_type sample_type; typedef numeric::functional::average< VariateType, std::size_t >::result_type variate_type; typedef numeric::functional::outer_product< sample_type, variate_type >::result_type result_type; // construct/copy/destruct template<typename Args> covariance_impl(Args const &); // public member functions template<typename Args> void operator()(Args const &) ; result_type result(dont_care) const; };