Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double GeometricCDFInv(double y, double p); | Geometric distribution point percent function (PPF). |
| 2 | void GeometricCDFInv(TDenseMtxVec *Y, double p, TDenseMtxVec *Res); | Geometric distribution PPF (vectorized). |
Overload 1: double GeometricCDFInv(double y, double p);
Geometric distribution point percent function (PPF).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | y | double | Probability, real positive value on closed interval [0,1]. |
| 2 | p | double | Defines success probability. p must lie on the [0,1] closed interval. |
Returns: the geometric distribution point percent function (PPF) for probability y by using parameter p (probability). Probability y and parameter p must lie on the interval [0,1], otherwise the result is NAN.
Remarks:
The result of GeometricCDFInv is observing result successes in a row, each with independent success probability p, with probability y.
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler
Overload 2: void GeometricCDFInv(TDenseMtxVec *Y, double p, TDenseMtxVec *Res);
Geometric distribution PPF (vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Y | TDenseMtxVec * | Defines distribution probabilities, real vector or matrix with values within closed interval [0,1]. |
| 2 | p | double | Defines success probability. p must lie on the [0,1] closed interval. |
| 3 | Res | TDenseMtxVec * | After calculation stores the PPF calculated from Y and p. Length and Complex properties of Res are adjusted automatically to match Length and Complex properties of Y. |
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler