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