LogNormalRandomNumberGenerator Constructor
Instantiates Normal distribution generator to LogNormal(mean,variance)
Namespace: Gemstone.Numeric.Random.LogNormalAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.166 -- Release Build+615b5375380e2ef684e1623e3d24332fd3a8e571
public LogNormalRandomNumberGenerator(
int seed,
double power = 2.71828182845905,
double mean = 0,
double variance = 1
)
Public Sub New (
seed As Integer,
Optional power As Double = 2.71828182845905,
Optional mean As Double = 0,
Optional variance As Double = 1
)
public:
LogNormalRandomNumberGenerator(
int seed,
double power = 2.71828182845905,
double mean = 0,
double variance = 1
)
Gemstone.Numeric.Random.LogNormal.LogNormalRandomNumberGenerator = function(seed, power, mean, variance);
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