Syntax: poisson_rnd(mean, x, y)
Description: The Poisson distribution with the mean.If x,y are given , create a matrix with Poisson values with the dimension x (rows) and y (columns).If only x is given, create a vector with Poisson values of size "x"
Group: random
Note:
Example:
poisson_rnd(1,100) % creates a vector with size 100. Poisson has the mean 1poisson_rnd(2,50,60) % Poisson mean is 2, matrix 50x60 will be filled.
Also see: beta
Implemented in: LambdaPOISSON_RND.java