Some statistics related functions. More...
#include "Robots/LoBot/util/LoMath.H"
#include <utility>
Go to the source code of this file.
Classes | |
class | lobot::generic_stats< T > |
A structure to hold several descriptive statistics together. More... | |
Functions | |
template<typename T , typename input_iterator > | |
generic_stats< T > | lobot::compute_stats (input_iterator begin, input_iterator end) |
template<typename T , typename input_iterator , typename converter_function > | |
generic_stats< T > | lobot::compute_stats (input_iterator begin, input_iterator end, converter_function F) |
template<typename T , typename input_iterator > | |
T | lobot::mean (input_iterator begin, input_iterator end) |
template<typename T , typename input_iterator , typename converter_function > | |
T | lobot::mean (input_iterator begin, input_iterator end, converter_function F) |
template<typename T , typename input_iterator > | |
T | lobot::stdev (input_iterator begin, input_iterator end) |
template<typename T , typename input_iterator , typename converter_function > | |
T | lobot::stdev (input_iterator begin, input_iterator end, converter_function F) |
template<typename T , typename input_iterator > | |
std::pair< T, T > | lobot::mean_stdev (input_iterator begin, input_iterator end) |
template<typename T , typename input_iterator , typename converter_function > | |
std::pair< T, T > | lobot::mean_stdev (input_iterator begin, input_iterator end, converter_function F) |
Some statistics related functions.
Definition in file LoStats.H.