How can I generate a random number in Java using different distributions within a range(0-99).

I know the standard Java.util.Random getNextInt() uses Uniform and PRNG. How would I use nextGaussian? But how would I generate the rest? The problem is that they need to be within a specified range(0-99), and the Random lib doesn't have nextPossion, nextExponential, nextGeometric etc?

Thanks for your time.

link|improve this question

1  
related: stackoverflow.com/questions/750325/… ? – RC. Dec 1 '11 at 7:09
feedback

1 Answer

up vote 3 down vote accepted

The uncommons maths library has a bunch of tools for generating numbers from various distributions. From the website: "can be used to generate values from Uniform, Normal, Binomial, Poisson and Exponential distributions."

It also has implementations of Random that are significantly better (for various flavours of "better") than what ships with the JDK.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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