How can we identify the type of traffic in wireless communication?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi All,
If I want to create a traffic distribution for a service and need the traffic to be highly bursty, which inter-arrival time distribution should I use?
- Uniform distribution (0–180 ms)
- Pareto (mean: 6 ms, max: 12.5 ms)
- Exponential (mean: 180 ms)
댓글 수: 0
답변 (1개)
Walter Roberson
2025년 6월 16일
Uniform distribution (0–180 ms)
That is obviously not bursty.
Exponential (mean: 180 ms)
First we need to calculate the multiplication factor that will give us a mean of 0.180. Then we model to see whether the result looks sufficiently bursty
t = 0:0.001:1;
syms f real
E = exp(f.*t);
F = double(vpasolve(mean(E) == 0.180))
TT = cumsum(exp(F.*rand(1,25)));
stem(TT,repmat(0.5,1,numel(TT)));
Well, it is a bit bursty, but I would not say it is satisfactory.
Pareto (mean: 6 ms, max: 12.5 ms)
Right at the moment, I am unsure of how to model that.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!