Difference between revisions of "love.math.randomNormal"

(Created page with "{{newin|0.9.0|090|type=function}} Get a normally distributed pseudo random number. == Function == === Synopsis === <source lang="lua"> number = love.math.randnormal( stddev )...")
 
(No difference)

Revision as of 21:41, 15 April 2013

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Get a normally distributed pseudo random number.

Function

Synopsis

number = love.math.randnormal( stddev )

Arguments

number stddev
Standard deviation of the distribution.

Returns

number number
Normally distributed random number with mean 0 and variance (stddev)².

See Also

Other Languages