#pragma once #include #include /// \brief Accumulate a vector to produce the mean and the first moment of the distribution. /// /// This computes the mean and the first moment of a vector of double values. /// std::tuple accumulate_vector( const std::vector& values ///< The vector of values );