Tagged Questions
7
votes
4answers
9k views
Algorithm to generate Poisson and binomial random numbers?
i've been looking around, but i'm not sure how to do it.
i've found this page which, in the last paragraph, says:
A simple generator for random numbers taken from a Poisson distribution is obtained ...
5
votes
5answers
9k views
Java Generator for Poisson and Uniform Distributions?
From what I understand, the standard generator is for the Normal Distribution. I have to generate random numbers according to the Normal, Uniform and Poisson Distributions, but I can't seem to find a ...
2
votes
2answers
278 views
Poisson variates, λ and arrival rate connection, Java network simulation
I'm developing a network simulator in which events for packet arrivals and transmission attempts are following a Poisson distribution. I have an adaptation of Knuth's algorithm:
public class Poisson ...
1
vote
1answer
78 views
Bursty packet traffic in Java
I have a requirement to simulate a network traffic which is Poisson and Bursty (Long or Heavy Tailed) inter arrival times. I could do the Poisson part as
delay = - log(1 - rand.nextDouble()) * ...
1
vote
1answer
268 views
Simulating Poisson Waiting Times - Java
I need to simulate Poisson wait times. I've found many examples of simulating the number of arrivals, but I need to simulate the wait time for one arrival, given an average wait time.
I keep finding ...
0
votes
1answer
87 views
how would I implement the following probability in a programming language, for example Java
Suppose that you have 10 stations that are sending packets at a given time
let's assume that the time is obtained from a counter, so for example
we can have
counter = 1,2,3,...
if counter=1 then ...