C ++使用std :: accumulate计算错误的标准差

时间:2016-07-21 18:41:05

标签: c++ statistics standard-deviation accumulate

我使用以下代码计算标准差:

std::vector<float> k = {4,6,2};
float mean = 4;

float sum = std::accumulate(k.begin(), k.end(), 0, [&mean](float x, float y) {
    return (y - mean) * (y - mean);
});

float variance = sum / k.size();
float stdev = sqrt(variance);

std::accumulate返回时应返回4

(4-4)^2 + (6-4)^2 + (2-4)^2 = 8

此外,打印(y - mean) * (y - mean)给出:

0
4
4

那么,为什么它不返回0 + 4 + 4

1 个答案:

答案 0 :(得分:7)

您不使用x参数。请尝试以下方法:

float sum = std::accumulate(k.begin(), k.end(), 0.0F, [&mean](float x, float y) {
    return x + (y - mean) * (y - mean);
});

UPDATE:init值为float