Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
584 views
in Technique[技术] by (71.8m points)

random - How to use rayleigh_distribution<> from boost library in c++?

I'm trying to generate random number using Rayleigh distribution. I have implemented this using the c++ the library below:

#include <boost/math/distributions/rayleigh.hpp>

boost::math::rayleigh_distribution<> rayleigh();

I don't know how to use this library to return number related to sigma.

question from:https://stackoverflow.com/questions/65642518/how-to-use-rayleigh-distribution-from-boost-library-in-c

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The sigma is passed in the constructor, so do it like this:

const double sigma = 5.;
boost::math::rayleigh_distribution<> rayleigh(sigma);

The method sigma() merely returns a copy of the set sigma, so you cannot use that.

What Scheff was referring to is that it would also work (given you want sigma to be 1.) if you do that

boost::math::rayleigh_distribution<> rayleigh{};

as this has no ambiguity with a function declaration, but is setting sigma to 1.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...