Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double ZipfCDFInv(double p, double s, int N); | Zipf distribution point percent function (PPF). |
| 2 | void ZipfCDFInv(TDenseMtxVec *p, double s, int N, TDenseMtxVec *Res); | Zipf distribution PPF (vectorized). |
Overload 1: double ZipfCDFInv(double p, double s, int N);
Zipf distribution point percent function (PPF).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | p | double | Probability, real positive value on closed interval [0,1]. |
| 2 | s | double | Distribution parameter, real positive value. |
| 3 | N | int | Distribution parameter, positive integer. |
Returns: Zipf distribution point percent function (PPF).
See Also: Probabilities::ZipfPDF, Probabilities::ZipfCDF
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler
Overload 2: void ZipfCDFInv(TDenseMtxVec *p, double s, int N, TDenseMtxVec *Res);
Zipf distribution PPF (vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | p | TDenseMtxVec * | Defines distribution probabilities, real vector or matrix with values within closed interval [0,1]. |
| 2 | s | double | Distribution parameter, real positive value. |
| 3 | N | int | Distribution parameter, positive integer. |
| 4 | Res | TDenseMtxVec * | 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. |
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler