Poisson arrivals and exponential inter-arrival times
Show older comments
I want generate events that follow Poisson arrivals and the inter-arrival time between events to be exponentially distributed?
which command should I use ?
Answers (1)
David Goodmanson
on 27 Jul 2017
Edited: David Goodmanson
on 27 Jul 2017
Hi zeezo,
Not doubt there is something in one or more of the toolboxes, but for a set of time intervals with the exponential distribution, with mean time t0:
n = 1e7
t = -log(rand(1,n))*t0;
The fraction of occurrences with t > t0 should be exp(-1):
>> (1/n)*sum(t>t0)
ans = 0.3680
>> exp(-1)
ans = 0.3679
Categories
Find more on Univariate Discrete Distributions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!