Random returns a number from a random sequence of numbers uniformly distributed in the range [0, 1.0].
RandomNormal returns a number from a random sequence of numbers whose distribution is normal with a mean of 0 and a standard deviation of 1.
The unique sequence of numbers associated with each integral seed is the same on all platforms supported by RiverWare, allowing for repeatable results.
The sequences are generated using the linear congruential method described
in Park and Miller (1988) Communication of the ACM, vol 31, pages 1192-1201.
Note: random number generators such as this are often referred to as "pseudo-random" because they are not the result of an intrinsically
random process, are in fact predictably determined by the seed.
|