문제

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()) * delay;

However, I am stuck with simulating the Bursty traffic simulation. Could someone hint/point me to the right web resource or code to achieve this? Thanks..

도움이 되었습니까?

해결책

The easiest and safest thing might be to download a library that supports various types of long-tailed distributions, such as a Pareto distribution, and call that API's nextRandom method (or the equivalent).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top