yat  0.12.3pre
Average.h
1 #ifndef _theplu_yat_statistics_average_
2 #define _theplu_yat_statistics_average_
3 
4 // $Id: Average.h 2809 2012-08-06 13:44:47Z peter $
5 
6 /*
7  Copyright (C) 2008 Jari Häkkinen, Peter Johansson
8 
9  This file is part of the yat library, http://dev.thep.lu.se/yat
10 
11  The yat library is free software; you can redistribute it and/or
12  modify it under the terms of the GNU General Public License as
13  published by the Free Software Foundation; either version 3 of the
14  License, or (at your option) any later version.
15 
16  The yat library is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  General Public License for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with yat. If not, see <http://www.gnu.org/licenses/>.
23 */
24 
25 #include "averager_traits.h"
26 
27 namespace theplu {
28 namespace yat {
29 namespace statistics {
30 
36  struct Average
37  {
43  template<typename InputIterator>
44  inline double operator()(InputIterator first, InputIterator last) const
45  {
47  add(a, first, last);
48  return a.mean();
49  }
50  };
51 
52 }}} // of namespace statistics, yat, and theplu
53 
54 #endif
double operator()(InputIterator first, InputIterator last) const
Definition: Average.h:44
Functor to take average of a range.
Definition: Average.h:36
void add(T &o, ForwardIterator first, ForwardIterator last, const classifier::Target &target)
Definition: utility.h:255
averager_traits< typename utility::weighted_iterator_traits< Iterator >::type >::type type
Definition: averager_traits.h:85

Generated on Mon Jun 1 2015 12:29:51 for yat by  doxygen 1.8.5