Syntax
RANDNORM([μ],[σ]) or RANDNORM(n,μ,σ)
Description
Return a random number from the normal distribution with the specified mean μ and standard deviation σ. Default values are 0 and 1.
With three arguments, returns a list of size n with each element being a random number fron the normal distribution with the specified mean μ and standard deviation σ.
Example
RANDNORM(3,0,1) returns { random1, random2, random3 }
RANDNORM — Discussion