Probabilities::LogWeibullCDFInv Function

Overload List

#SignatureDescription
1double LogWeibullCDFInv(double p, double a, double b);Log-Weibull distribution point percent function (PPF).
2void LogWeibullCDFInv(TDenseMtxVec *P, double a, double b, TDenseMtxVec *Res);Log-Weibull distribution PPF (vectorized).

Overload 1: double LogWeibullCDFInv(double p, double a, double b);

Log-Weibull distribution point percent function (PPF).

#NameTypeDescription
1pdoubleProbability, real value on closed interval [0,1].
2adoubleDistribution location parameter, real value.
3bdoubleDistribution scale parameter, real positive value.

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

Remarks:

The inverse log-Weibull cumulative distribution function (quantile) is

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

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

See Also: Probabilities::LogWeibullPDF, Probabilities::LogWeibullCDF
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler

Overload 2: void LogWeibullCDFInv(TDenseMtxVec *P, double a, double b, TDenseMtxVec *Res);

Log-Weibull distribution PPF (vectorized).

#NameTypeDescription
1PTDenseMtxVec *Defines distribution probabilities, real vector or matrix with values within closed interval [0,1].
2adoubleDistribution location parameter, real positive value.
3bdoubleDistribution scale parameter, real positive value.
4ResTDenseMtxVec *After 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.
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler