Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double UniformDCDFInv(double p, int N); | Discrete uniform distribution point percent function (PPF). |
| 2 | void UniformDCDFInv(TDenseMtxVec *P, int N, TDenseMtxVec *Res); | Discrete uniform distribution PPF (vectorized). |
Overload 1: double UniformDCDFInv(double p, int N);
Discrete uniform distribution point percent function (PPF).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | p | double | Probability, real positive value on closed interval [0,1]. |
| 2 | N | int | Distribution parameter, real positive integer. |
Returns: the Discrete uniform distribution point percent function (PPF) for probability p using the parameter N. The probability p must lie on the interval (0,1] and parameter N must be greater than 1, otherwise the result is NAN.
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler
Overload 2: void UniformDCDFInv(TDenseMtxVec *P, int N, TDenseMtxVec *Res);
Discrete uniform distribution PPF (vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | P | TDenseMtxVec * | Defines distribution probabilities, real vector or matrix with values within closed interval [0,1]. |
| 2 | N | int | Distribution parameter, positive integer. |
| 3 | Res | TDenseMtxVec * | After calculation stores the PPF calculated from P 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