RandomRangeG
From SCAR Divi Manual
Definition
function RandomRangeG(const AFrom, ATo: Integer; const Variance: Extended): Integer;
Availability
SCAR Divi 3.28 > Current
Description
Returns a random number from the range [AFrom, ATo - 1] using normal distribution with a given Variance. If the variance is lower, the random values will have bigger chance of being closer to AFrom. The algorithm to calculate this is based on the Gaussian function.
Example
var i: Integer; begin for i := 1 to 10 do WriteLn(RandomRangeG(1, 100, 2)); end.