LogNormalRandomNumberGenerator Constructor

Instantiates Normal distribution generator to LogNormal(mean,variance)

Definition

Namespace: Gemstone.Numeric.Random.LogNormal
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.171 -- Release Build+20915b5e5c2b832e94890ea4187a61c474a2582a
public LogNormalRandomNumberGenerator(
	int seed,
	double power = 2.71828182845905,
	double mean = 0,
	double variance = 1
)

Parameters

seed  Int32
Seed value for Uniform generator
power  Double  (Optional)
Power of the Log Normal distribution
mean  Double  (Optional)
Mean of the Normal distribution
variance  Double  (Optional)
Variance of the Normal distribution

See Also