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