I need to create a number generator that draws numbers with a Pareto distribution in a specific interval. I am working in C++.
I cannot use the <random>
lib of C++ 11 so I was trying to solve my problem by using the boost library where I found the class pareto_distribution.
There is another question about this topic but the solution they proposed does not work for me.
Can anyone help me ?
thanks in advance.