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.