Forum Discussion
Altera_Forum
Honored Contributor
14 years agomodelling interarrival times
Hello, I am interested to model inter arrival times for my design based on exponential distribution. I first tried to write a simple model which given below. I have two clarification...
Altera_Forum
Honored Contributor
14 years agoHi,
to generate arrival times with an exponential distribution, what I usually do is this: delta_t = - log(u)/rate where "u" is a uniform random value [0,1] and and delta_t is the interval between two events.