Section: Random Number Generation
y = randp(nu),
where nu
is an array containing the rate parameters
for the generated random variables.
1/N
).
The Poisson distribution is given by
randp
to generate some Poisson
random variables, and also using randbin
to do the same
using N=1000
trials to approximate the Poisson result.
--> randp(33*ones(1,10)) ans = 39 39 27 27 35 31 29 28 33 25 --> randbin(1000*ones(1,10),33/1000*ones(1,10)) ans = 31 17 42 19 34 36 34 41 30 30