vote up 2 vote down star
2

Hi,

I'm looking for known libraries that are able to generate non uniformly distributed random numbers for C, C++ and Java.

Thanks

flag

stackoverflow.com/questions/1534285/… and stackoverflow.com/questions/977354/… and others. Special case of no closed form distribution here: stackoverflow.com/questions/423006/… – dmckee Nov 7 at 1:29

6 Answers

vote up 1 vote down check

The GNU Scientific Library (GSL), http://www.gnu.org/software/gsl/, provides numerous non-uniform random distributions -- see Chapter 19 of the Manual, "Random Number Distributions". (Uniform random number generators are in Chapter 17, "Random Number Generation"). The implementation is in C.

link|flag
vote up 0 vote down

Boost has a fairly wide selection of random number generates, plus the ability to filter these through several distributions.

link|flag
vote up 0 vote down

Numerical Recipes discusses a few algorithms for random number generators.

link|flag
Actually i already wrote some algorithms for random number generators: Box-Muller, Rejection method among others.. So i'm just looking for libraries that has the reputation to generate strong random numbers non uniformly distributed – Amokrane Nov 7 at 0:19
vote up 1 vote down

Have a look at Alglib's implementations, they have a few basic distributions implemented in several languages.

link|flag
This link leads algorithms for the calculation of several distribution functions, but I didn't find any algorithms for the calculation of random numbers drawn from the distributions. – M. S. B. Nov 7 at 6:02
Yes, that's true, you have to use a separate RNG. For example invpoissondistribution(k, rng.nextDouble()) would give you a Poisson variate with parameter k. – Jonatan Lindén Nov 7 at 9:44
vote up 3 vote down

For Java, one option is my Uncommons Maths library. It supports Uniform, Gaussian, Binomial, Poisson and Exponential distributions. There is a WebStart demo so you can see what it does.

link|flag
vote up 4 vote down

I got some interesting responses in this related question:

http://stackoverflow.com/questions/1396978/biased-random-number-sources

link|flag

Your Answer

Get an OpenID
or

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