![]() |
Agroeye
1.0
|
Functions | |
template<class Iterator > | |
double | mean (Iterator first, Iterator last) |
Metafunction computing the mean value. This function calculates the mean value of elements in given container pointed by pair of iterators. More... | |
template<class Iterator > | |
double | mean (Iterator first, Iterator last, typename Iterator::value_type ignoreValue) |
Metafunction computing the mean value. This function calculates the mean value of elements in given container pointed by pair of iterators. From computation of mean value all values having ignoreValue are excluded. More... | |
template<class Iterator > | |
double | stddev (Iterator first, Iterator last) |
Metafunction computing the standard deviation value. This function calculates the standard deviation value of elements in given container pointed by pair of iterators. More... | |
template<class Iterator > | |
double | stddev (Iterator first, Iterator last, typename Iterator::value_type ignoreValue) |
Metafunction computing the standard deviation value. This function calculates the standard deviation value of elements in given container pointed by pair of iterators. From computation of standard deviation value all values having ignoreValue are excluded. More... | |
double agroeye::algorithm::math::mean | ( | Iterator | first, |
Iterator | last | ||
) |
Metafunction computing the mean value. This function calculates the mean value of elements in given container pointed by pair of iterators.
first | The first element |
last | Next element behid the last |
double agroeye::algorithm::math::mean | ( | Iterator | first, |
Iterator | last, | ||
typename Iterator::value_type | ignoreValue | ||
) |
Metafunction computing the mean value. This function calculates the mean value of elements in given container pointed by pair of iterators. From computation of mean value all values having ignoreValue are excluded.
first | The first element |
last | Next element behid the last |
ignoreValue | The value excluded from computin mean value |
double agroeye::algorithm::math::stddev | ( | Iterator | first, |
Iterator | last | ||
) |
Metafunction computing the standard deviation value. This function calculates the standard deviation value of elements in given container pointed by pair of iterators.
first | The first element |
last | Next element behid the last |
double agroeye::algorithm::math::stddev | ( | Iterator | first, |
Iterator | last, | ||
typename Iterator::value_type | ignoreValue | ||
) |
Metafunction computing the standard deviation value. This function calculates the standard deviation value of elements in given container pointed by pair of iterators. From computation of standard deviation value all values having ignoreValue are excluded.
first | The first element |
last | Next element behid the last |
ignoreValue | The value excluded from computin mean value |