Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure ZipfCDFInv(const p: TDenseMtxVec; s: Double; N: Integer; const Res: TDenseMtxVec); | Zipf distribution PPF (vectorized). |
| 2 | function ZipfCDFInv(p: Double; s: Double; N: Integer): Double; | Zipf distribution point percent function (PPF). |
Overload 1: procedure ZipfCDFInv(const p: TDenseMtxVec; s: Double; N: Integer; const Res: TDenseMtxVec);
Zipf distribution PPF (vectorized).
| # | Name | Description |
|---|---|---|
| 1 | p | Defines distribution probabilities, real vector or matrix with values within closed interval [0,1]. |
| 2 | s | Distribution parameter, real positive value. |
| 3 | N | Distribution parameter, positive integer. |
| 4 | Res | After calculation stores the PPF calculated from P,s and N. 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 ZipfCDFInv(p: Double; s: Double; N: Integer): Double;
Zipf distribution point percent function (PPF).
| # | Name | Description |
|---|---|---|
| 1 | p | Probability, real positive value on closed interval [0,1]. |
| 2 | s | Distribution parameter, real positive value. |
| 3 | N | Distribution parameter, positive integer. |
Returns: Double - Zipf distribution point percent function (PPF).
See Also: Probabilities.ZipfPDF, Probabilities.ZipfCDF