Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double FCDF(double x, int Nu1, int Nu2); | F (Fisher-Snedecor) cumulative distribution function (CDF). |
| 2 | void FCDF(TDenseMtxVec *X, int Nu1, int Nu2, TDenseMtxVec *Res); | Fisher(F) CDF (vectorized). |
Overload 1: double FCDF(double x, int Nu1, int Nu2);
F (Fisher-Snedecor) cumulative distribution function (CDF).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | x | double | Distribution domain, real value >= 0. |
| 2 | Nu1 | int | Numerator degrees of freedom, integer > 0. |
| 3 | Nu2 | int | Denominator degrees of freedom, integer > 0. |
Returns: the F cumulative distribution function (CDF) at x for degrees of freedom Nu1 and Nu2. Returns NAN when Nu1 <= 0, Nu2 <= 0 or x < 0.
Remarks:
Computes the F CDF via the regularized incomplete beta function. The implementation uses the identity
CDF(x|nu _1 , nu _2 )= 1 - I_(nu_2/(nu_2+nu_1 x))(nu_2/2,nu_1/2)
where I_z(a,b) is the regularized incomplete beta function. The result is the probability that an observation falls in , lies in and is monotone non-decreasing. Domain: x >= 0, integer nu_1,nu_2 > 0. If either parameter is <= 0 or x < 0 the result is NAN.
See Also: Probabilities::FPDF, Probabilities::FCDFInv
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler
Overload 2: void FCDF(TDenseMtxVec *X, int Nu1, int Nu2, TDenseMtxVec *Res);
Fisher(F) CDF (vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TDenseMtxVec * | Defines distribution domain, real vector or matrix with positive real values or zeros. |
| 2 | Nu1 | int | Defines distribution degrees of freedom. Nu1 must be a positive integer. |
| 3 | Nu2 | int | Defines distribution degrees of freedom. Nu2 must be a positive integer. |
| 4 | Res | TDenseMtxVec * | After calculation stores the CDF calculated from X, Nu1 and Nu2. Length and Complex properties of Res are adjusted automatically to match Length and Complex properties of X. |
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler