Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void GeometricFit(TVec *X, double &P); | Calculate parameters for geometrically distributed values. |
| 2 | void GeometricFit(TVec *X, double &P, DewArray<double> &PCI, double Alpha = 0.05); | Calculate parameters for geometrically distributed values. |
Overload 1: void GeometricFit(TVec *X, double &P);
Calculate parameters for geometrically distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | P | double & |
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler
Overload 2: void GeometricFit(TVec *X, double &P, DewArray<double> &PCI, double Alpha = 0.05);
Calculate parameters for geometrically distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | Stores data which is assumed to be geometricaly distributed. |
| 2 | P | double & | Returns geometric distribution parameter estimator. |
| 3 | PCI | DewArray<double> & | P (1-Alpha)*100 percent confidence interval. |
| 4 | Alpha = 0.05 | double | Confidence interval percentage. |
See Also: RandomGeometric, GeometricStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler