normal_rnd

Syntax: normal_rnd(mean, std,x, y)

Description: The Normal distribution with the mean.If x,y are given , create a matrix with Normal Distribution values with the dimension x (rows) and y (columns).If only x is given, create a vector with Normal Distribution values of size "x"

Group: normal

Note:

Example:

normal_rnd(1,0.2, 100) % creates a vector with size 100. Mean is 1 and standard deviation 0.2normal_rnd(2,0.2, 50,60) % Mean=2, STD=0.2, filled  50x60 matrix.

Also see: poisson

Implemented in: LambdaNORMAL_RND.java