Probabilities.NormalStat Method

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

Normal distribution moments (mean, variance, skewness, excess kurtosis).

#NameDescription
1AMeanReturns the distribution mean, = Mu.
2AVarianceReturns the distribution variance, = sigma^2.
3ASkewnessReturns the distribution skewness, = 0.
4AKurtosisReturns the EXCESS kurtosis, = 0.
5MuDistribution location parameter (mean), any real value.
6sigmaDistribution scale parameter (standard deviation), real value > 0.

Result: stored in self (calling object)

Remarks:

Returns the moments of the normal distribution: mean mu, variance sigma^2, skewness 0 and excess kurtosis 0. If sigma <= 0 all four outputs are NAN.