Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

FTP poisson distributed traffic generation in Matlab

Status
Not open for further replies.

alicetaylors

Newbie level 3
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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top