Probabilities.LogNormalStat Method

procedure LogNormalStat(Mu: Double; sigma: Double; out AMean: Double; out AVariance: Double; out ASkewness: Double; out AKurtosis: Double);

Log-normal distribution moments (mean, variance, skewness, excess kurtosis).

#NameDescription
1AMeanReturns the mean, = exp(Mu + sigma^2/2).
2AVarianceReturns the variance, = (exp(sigma^2)-1) exp(2 Mu + sigma^2).
3ASkewnessReturns the skewness, = (exp(sigma^2)+2) sqrt(exp(sigma^2)-1).
4AKurtosisReturns the EXCESS kurtosis, = exp(4 sigma^2)+2 exp(3 sigma^2)+3 exp(2 sigma^2)-6.
5MuLocation parameter: mean of ln(x), any real value.
6sigmaScale parameter: standard deviation of ln(x), real value > 0.

Result: stored in self (calling object)

Remarks:

Returns the moments of the log-normal distribution. If sigma <= 0 all four outputs are NAN.