I would like to know if in C++ standard libraries there is any gaussian distribution number generator, or if you have any code snippet to pass.

Thanks in advance.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 13 down vote accepted

The standard library does not. Boost.Random does, however. I'd use that if I were you.

link|improve this answer
feedback

C++ Technical Report 1 adds support for random number generation. So if you're using a relatively recent compiler (visual c++ 2008 GCC 4.3), chances are that it is available out of the box.

See here for sample usage of std::tr1::normal_distribution (and many more).

link|improve this answer
1  
If it is not there yet, you can find it as part of Boost, too: boost.org/doc/libs/1_39_0/doc/html/boost_tr1/… – stephan Jul 10 '09 at 14:55
feedback

The GNU Scientific Libraries has this feature. GSL - Gaussian Distribution

link|improve this answer
"will have" ? – jalf Jul 10 '09 at 13:55
Lol, I wrote that before I looked up the answer... I guess I should change it :) – Matt Price Jul 10 '09 at 14:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.