Statistics::NormalFit Function

Overload List

#SignatureDescription
1void NormalFit(TVec *X, double &mu, double &sigma);Calculate parameters for normally distributed values.
2void NormalFit(TVec *X, double &mu, double &sigma, DewArray<double> &PCIMu, DewArray<double> &PCISigma, double Alpha = 0.05);Calculate parameters for normally distributed values.

Overload 1: void NormalFit(TVec *X, double &mu, double &sigma);

Calculate parameters for normally distributed values.

#NameTypeDescription
1XTVec *
2mudouble &
3sigmadouble &
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler

Overload 2: void NormalFit(TVec *X, double &mu, double &sigma, DewArray<double> &PCIMu, DewArray<double> &PCISigma, double Alpha = 0.05);

Calculate parameters for normally distributed values.

#NameTypeDescription
1XTVec *Stores data which is assumed to be normaly distributed.
2mudouble &Return normal distribution parameter estimator Mu.
3sigmadouble &Return normal distribution parameter estimator Sigma.
4PCIMuDewArray<double> &Mu (1-Alpha)*100 percent confidence interval.
5PCISigmaDewArray<double> &Sigma (1-Alpha)*100 percent confidence interval.
6Alpha = 0.05doubleConfidence interval percentage.
See Also: RandomNormal, NormalStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler