Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void GammaFit(TVec *X, double &A, double &B, int MaxIter = 500, double Tolerance = 1E-8); | Calculate parameters for Gamma distributed values using MLE. |
| 2 | void GammaFit(TVec *X, double &A, double &B, DewArray<double> &PCIA, DewArray<double> &PCIB, int MaxIter = 500, double Tolerance = 1E-8, double Alpha = 0.05); | Calculate parameters for Gamma distributed values. |
Overload 1: void GammaFit(TVec *X, double &A, double &B, int MaxIter = 500, double Tolerance = 1E-8);
Calculate parameters for Gamma distributed values using MLE.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | A | double & | |
| 3 | B | double & | |
| 4 | MaxIter = 500 | int | |
| 5 | Tolerance = 1E-8 | double |
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler
Overload 2: void GammaFit(TVec *X, double &A, double &B, DewArray<double> &PCIA, DewArray<double> &PCIB, int MaxIter = 500, double Tolerance = 1E-8, double Alpha = 0.05);
Calculate parameters for Gamma distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | Stores data which is assumed to be Gamma distributed. |
| 2 | A | double & | Return Gamma distribution parameter estimator A. |
| 3 | B | double & | Return Gamma distribution parameter estimator B. |
| 4 | PCIA | DewArray<double> & | A (1-Alpha)*100 percent confidence interval. |
| 5 | PCIB | DewArray<double> & | B (1-Alpha)*100 percent confidence interval. |
| 6 | MaxIter = 500 | int | Maximum number of iterations needed for deriving a and b. |
| 7 | Tolerance = 1E-8 | double | Defines the acceptable tolerance for calculating a and b. |
| 8 | Alpha = 0.05 | double | Confidence interval percentage. |
See Also: RandomGamma, GammaStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler