On 14 May 2015 at 12:10, Uthpal Urubail <uthpal.urubail@altair.com> wrote:
Experts,
Is there a direct way in boost to group numbers by deviation (by given percentage)?
Regards,
UJ
_______________________________________________

Look at boost::accumulators and boost::math, you probably mean

1. determine the average (mean) of a serie of numbers
2. put numbers in buckets according to how many std deviations they are from the mean

?