Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure PoissonCDFInv(const P: TDenseMtxVec; Lambda: Double; const Res: TDenseMtxVec); | Poisson distribution PPF (vectorized). |
| 2 | function PoissonCDFInv(p: Double; Lambda: Double): Double; | Poisson distribution point percent function (PPF). |
Overload 1: procedure PoissonCDFInv(const P: TDenseMtxVec; Lambda: Double; const Res: TDenseMtxVec);
Poisson distribution PPF (vectorized).
| # | Name | Description |
|---|---|---|
| 1 | P | Defines distribution probabilities, real vector or matrix with values within closed interval [0,1]. |
| 2 | Lambda | Distribution parameter, real positive value. |
| 3 | Res | After calculation stores the PPF calculated from P and Lambda. Length and Complex properties of Res are adjusted automatically to match Length and Complex properties of P. |
Result: stored in self (calling object)
Overload 2: function PoissonCDFInv(p: Double; Lambda: Double): Double;
Poisson distribution point percent function (PPF).
| # | Name | Description |
|---|---|---|
| 1 | p | Probability, real value on closed interval [0,1]. |
| 2 | Lambda | Distribution parameter, real positive value. |
Returns: Double - the Poisson distribution point percent function (PPF) for probability p using the parameter Lambda. Lambda must be positive and probability y must lie on the interval [0,1], otherwise the result is NAN.
See Also: Probabilities.PoissonPDF, Probabilities.PoissonCDF