exponential-distribution

Pseudorandom Number Generator - Exponential Distribution

I would like to generate some pseudorandom numbers and up until now I've been very content with the .Net library's Random.Next(int min, int max) function. PRNGs of this variety are supposed to be using a Uniform distribution, but I would very much like to generate some numbers using an Exponential Distribution. I'm programming in C#, a...

Exponential distribution in Python

What's the easiest way to draw a random number from an exponential distribution in Python? ...

Random number generator that generates integers for Java

hi, I want to generate some random integers in Java, but this according to some distribution laws. More specific: I want to generate some random integers for gaussian distribution. I found out only generators which return double results for the gaussian distribution. Why is that? I want to generate some random integers between some li...