Normal-func
This function returns a range with npts number of values. The initial starting value in the range is determined by seed. The values are random numbers with a normal (zero mean and unit standard deviation) distribution respectively. If seed is omitted, a different seed is used each time the function is called.
dataset normal(int npts[, int seed])
npts
seed
Returns a range with npts number of values.
The following script fills column 1 with 100 random numbers with a mean = 5 and a sd = 2.
col(1) = normal(100)*2+5;