LogNormalRandomNumber Constructor

Transforms a Uniform(0,1) into a LogNormal(mean,variance)

Definition

Namespace: Gemstone.Numeric.Random.LogNormal
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.172 -- Release Build+a1df2e6c05369850bd6adda4f66e605f51f93037
public LogNormalRandomNumber(
	UniformRandomNumber uniform,
	double power = 2.71828182845905,
	double mean = 0,
	double variance = 1
)

Parameters

uniform  UniformRandomNumber
UniformRandomNumberUniform(0,1)
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