| Author |
Comment/Response |
yehuda
|
12/24/12 4:13pm
Random[] is an old function (superseded by RandomReal and RandomInteger since ver. 6, see documentation) and is not identical to the other two
check this
SeedRandom[100];
RandomReal[NormalDistribution[]]
SeedRandom[100];
Random[NormalDistribution[]]
SeedRandom[100];
RandomVariate[NormalDistribution[]]
the remaining two seems to be identical
Table[(SeedRandom[100];
RandomReal[NormalDistribution[], 10^n]) == (SeedRandom[100];
RandomVariate[NormalDistribution[], 10^n]), {n, 6}]
yehuda
URL: , |
|