poisson

Syntax: poisson(mean, x, y)

Description: The Poisson distribution with the mean.If x,y are given , create a matrix with Posson values with the dimension x and y.If only x is given, create a vector of size "x"

Group: random

Note:

Example:

poisson(1,100) % creates a vector with size 100. Poisson has the mean 1poisson(2,50,60) % Poisson mean is 2, matrix 50x60 will be filled.

Also see: beta

Implemented in: LambdaPOISSON.java