alicetaylors
Newbie level 3
Hi,
Does anyone know how to code a poisson distributed traffic for a wireless network in Matlab?
Does anyone know how to code a poisson distributed traffic for a wireless network in Matlab?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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,...);