Hello,
I use some distributions with this code:
boost::normal_distribution<> l_range(p_mean, p_sd);
static boost::mt19937 l_random(static_caststd::size_t(time(0)));
boost::variate_generator
l_noise( l_random, l_range );
I get my value with l_noise() and it works without any problem.
I would like to create now a student_t distribution with
boost::math::students_t_distribution<T> l_range(p_v);
static boost::mt19937 l_random(static_caststd::size_t(time(0)));
boost::variate_generator