All Questions
Tagged with boost-accumulators c++11
3 questions
1
vote
1
answer
239
views
How can I use boost accumulator quantile_probability inside a class member initialization?
Boost Accumulator has an unfortunate quirk in which the api interface behaves differently when used inside of a class.
I am trying to use Boost Accumulator quantile_probability inside of a class but I ...
0
votes
1
answer
1k
views
Two boost::accumulators::accumulator_set interfere with each other
I have created a class Histogram in my code which is intended as a wrapper for boost::accumulators::accumulator_set from Boost 1.54. The things that seem important to my problem are those lines from ...
13
votes
2
answers
1k
views
Summing two boost::accumulator_set instances
I have recently discovered the excellent library boost::accumulators, and I would like to use it to replace some of my code that accumulates statistics.
One thing I cannot find in the documentation ...