Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void NormalFit(TVec *X, double &mu, double &sigma); | Calculate parameters for normally distributed values. |
| 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. |
Overload 1: void NormalFit(TVec *X, double &mu, double &sigma);
Calculate parameters for normally distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | mu | double & | |
| 3 | sigma | double & |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | Stores data which is assumed to be normaly distributed. |
| 2 | mu | double & | Return normal distribution parameter estimator Mu. |
| 3 | sigma | double & | Return normal distribution parameter estimator Sigma. |
| 4 | PCIMu | DewArray<double> & | Mu (1-Alpha)*100 percent confidence interval. |
| 5 | PCISigma | DewArray<double> & | Sigma (1-Alpha)*100 percent confidence interval. |
| 6 | Alpha = 0.05 | double | Confidence interval percentage. |
See Also: RandomNormal, NormalStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler