Probabilities.UniformCDFInv Method

Overload List

#SignatureDescription
1void UniformCDFInv(TDenseMtxVec P, Double A, Double B, TDenseMtxVec Res)Uniform distribution PPF (vectorized).
2Double UniformCDFInv(Double p, Double a, Double b)Uniform distribution point percent function (PPF).

Overload 1: void UniformCDFInv(TDenseMtxVec P, Double A, Double B, TDenseMtxVec Res)

Uniform distribution PPF (vectorized).

#NameDescription
1PDefines distribution probabilities, real vector or matrix with values within closed interval [0,1].
2ADistribution parameter, real value, defining distribution lower bound.
3BDistribution parameter, real value, defining distribution upper bound.
4ResAfter calculation stores the PPF calculated from P, A and B. 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: Double UniformCDFInv(Double p, Double a, Double b)

Uniform distribution point percent function (PPF).

#NameDescription
1pProbability, real value on closed interval [0,1].
2aDistribution lower bound, real value.
3bDistribution upper bound, real value (b > a).

Returns: Double - the Uniform distribution point percent function (PPF) for probability p using the parameters a and b. a must be smaller than b and p must lie in [0,1], otherwise the result is NAN.

Remarks:

The inverse uniform cumulative distribution function (quantile) is

CDF^(-1)(p| a,b)=a+p (b-a)

Domain: probability p in [0,1], a < b. For p < 0, p > 1, or a >= b the result is NAN.

See Also: Probabilities.UniformPDF, Probabilities.UniformCDF