Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to compute the mean value of a vector of doubles using the following code (compiled with g++ mean.cc -std=c++0x):

// mean.cc

struct Mean {
  unsigned int n;
  Mean(unsigned int n) : n(n) {}
  double operator()(double sum, double x) {
    return sum + x/n;
  }
};

int main () {
  vector<double> v = {1,2,3,4,5,6};
  Mean mean(v.size());
  cout << "mean: " << accumulate(v.begin(), v.end(), 0, mean) << endl;
  return 0;
}

The mean value should be 3.5, I think. The program however prints mean: 1.

If I remove the division by n in my operator() the sum of the elements is computed as expected. What am I doing wrong here?

share|improve this question

1 Answer

up vote 9 down vote accepted

It seems that gcc uses accumulate<vector<double>::iterator,int> instead of accumulate<vector<double>::iterator,double>. If you use the specific template values it will work:

cout << "mean: " << accumulate<vector<double>::iterator,double>(v.begin(), v.end(), 0, mean) << endl;

EDIT: This happens because the type T in template< class InputIterator, class T > T accumulate is defined by your initial value 0, which is an integer. So use the line above or

cout << "mean: " << accumulate(v.begin(), v.end(), 0.0, mean) << endl;

References

share|improve this answer
8  
Or just pass the initial value as 0.0. I’d prefer that: less code. – Konrad Rudolph Mar 7 '12 at 10:29
That's it, thanks! – moooeeeep Mar 7 '12 at 10:29
@KonradRudolph: Thanks, just noticed that myself and updated my answer. – Zeta Mar 7 '12 at 10:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.