Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void BetaFit(TVec *X, double &A, double &B, int MaxIter = 500, double Tolerance = 1E-8); | Calculate parameters for Beta distributed values using MLE. |
| 2 | void BetaFit(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 Beta distributed values. |
Overload 1: void BetaFit(TVec *X, double &A, double &B, int MaxIter = 500, double Tolerance = 1E-8);
Calculate parameters for Beta 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 BetaFit(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 Beta distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | Stores data which is assumed to be Beta distributed. |
| 2 | A | double & | Return Beta distribution parameter estimator a. |
| 3 | B | double & | Return Beta 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: RandomBeta, BetaStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler