Poisson arrivals and exponential inter-arrival times
조회 수: 1 (최근 30일)
이전 댓글 표시
I want generate events that follow Poisson arrivals and the inter-arrival time between events to be exponentially distributed?
which command should I use ?
댓글 수: 0
답변 (1개)
David Goodmanson
2017년 7월 27일
편집: David Goodmanson
2017년 7월 27일
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
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!