Probabilities.UniformDCDFInv Method

Overload List

#SignatureDescription
1procedure UniformDCDFInv(const P: TDenseMtxVec; N: Integer; const Res: TDenseMtxVec);Discrete uniform distribution PPF (vectorized).
2function UniformDCDFInv(p: Double; N: Integer): Double;Discrete uniform distribution point percent function (PPF).

Overload 1: procedure UniformDCDFInv(const P: TDenseMtxVec; N: Integer; const Res: TDenseMtxVec);

Discrete uniform distribution PPF (vectorized).

#NameDescription
1PDefines distribution probabilities, real vector or matrix with values within closed interval [0,1].
2NDistribution parameter, positive integer.
3ResAfter 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.

Result: stored in self (calling object)

Overload 2: function UniformDCDFInv(p: Double; N: Integer): Double;

Discrete uniform distribution point percent function (PPF).

#NameDescription
1pProbability, real positive value on closed interval [0,1].
2NDistribution parameter, real positive integer.

Returns: Double - 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.

See Also: Probabilities.UniformDPDF, Probabilities.UniformDCDF