FTP poisson distributed traffic generation in Matlab

Status
Not open for further replies.

alicetaylors

Newbie level 3
Joined
Jun 30, 2016
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
21
Hi,

Does anyone know how to code a poisson distributed traffic for a wireless network in Matlab?
 

I'm not sure exactly what you mean but if you want to generate a Poisson distributed random variable then the following Matlab function will do it.

R = poissrnd(lambda);

Or, for a Poisson distributed matrix,

R = poissrnd(lambda,m,n,...);
 

I'm not sure exactly what you mean but if you want to generate a Poisson distributed random variable then the following Matlab function will do it.

R = poissrnd(lambda);

Or, for a Poisson distributed matrix,

R = poissrnd(lambda,m,n,...);

I need to generate an internet (data) traffic consist of 300 mobile users. These users should have homogeneous poisson distribution with a constant arrival rate.
 

If you have a const arrival rate, you have no need for a distribution. I guess you only have the average arrival rate. What is the meaning of homogeneous Poisson distribution?
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…