Click or drag to resize

RandGenLogNormal(Double, Double, RandomNumberGeneratorUniformRandomNumber) Constructor

Constructs a RandGenLogNormal instance using the given delegate as the underlying uniform random number generator. The generated deviates will follow a lognormal distribution with the specified mean and variance.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public RandGenLogNormal(
	double mean,
	double variance,
	RandomNumberGeneratorUniformRandomNumber rand
)

Parameters

mean  Double
The mean.
variance  Double
The variance.
rand  RandomNumberGeneratorUniformRandomNumber
A delegate method that returns a uniform random deviate between zero and one.
See Also