Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void UniformFit(TVec *X, double &low, double &high); | Calculate parameters for uniformly distributed values. |
| 2 | void UniformFit(TVec *X, double &low, double &high, DewArray<double> &PCILow, DewArray<double> &PCIHigh, double Alpha = 0.05); | Calculate parameters for uniformly distributed values. |
Overload 1: void UniformFit(TVec *X, double &low, double &high);
Calculate parameters for uniformly distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | low | double & | |
| 3 | high | double & |
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler
Overload 2: void UniformFit(TVec *X, double &low, double &high, DewArray<double> &PCILow, DewArray<double> &PCIHigh, double Alpha = 0.05);
Calculate parameters for uniformly distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | Stores data which is assumed to be uniformly distributed. |
| 2 | low | double & | Return uniform distribution parameter estimator Low. |
| 3 | high | double & | Return uniform distribution parameter estimator High. |
| 4 | PCILow | DewArray<double> & | Low (1-Alpha)*100 percent confidence interval. |
| 5 | PCIHigh | DewArray<double> & | High (1-Alpha)*100 percent confidence interval. |
| 6 | Alpha = 0.05 | double | Confidence interval percentage. |
See Also: RandomUniform, UniformStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler