Uses of Interface
dev.nm.stat.random.rng.univariate.uniform.linear.LinearCongruentialGenerator
-
Packages that use LinearCongruentialGenerator Package Description dev.nm.stat.random.rng.univariate.uniform.linear -
-
Uses of LinearCongruentialGenerator in dev.nm.stat.random.rng.univariate.uniform.linear
Classes in dev.nm.stat.random.rng.univariate.uniform.linear that implement LinearCongruentialGenerator Modifier and Type Class Description class
CompositeLinearCongruentialGenerator
A composite generator combines a number of simpleLinearCongruentialGenerator
, such asLehmer
, to form one longer period generator by first summing values and then taking modulus.class
LEcuyer
This is the uniform random number generator recommended by L'Ecuyer in 1996.class
Lehmer
Lehmer proposed a general linear congruential generator that generates pseudo-random numbers in [0, 1].class
MRG
A Multiple Recursive Generator (MRG) is a linear congruential generator which takes this form:Constructors in dev.nm.stat.random.rng.univariate.uniform.linear with parameters of type LinearCongruentialGenerator Constructor Description CompositeLinearCongruentialGenerator(LinearCongruentialGenerator[] rng)
Constructs a linear congruential generator from some simpler and shorter modulus generators.
-