C++: generate gaussian distribution

c++, gaussian, normal-distribution

Solution

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

Problem

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.

Original source

Related problems