The OpenD Programming Language

fCCDF

Computes the F complementary cumulative distribution function (CCDF).

@safe pure nothrow @nogc
T
fCCDF
(
T
)
(
const T x
,
const T df1
,
const T df2
)
if (
isFloatingPoint!T
)

Parameters

x T

value to evaluate CCDF

df1 T

degrees of freedom parameter #1

df2 T

degrees of freedom parameter #2

Examples

import mir.test: shouldApprox;

0.50.fCCDF(1, 1).shouldApprox == 0.6081734;
0.75.fCCDF(1, 2).shouldApprox == 0.477767;
0.25.fCCDF(0.5, 4).shouldApprox == 0.4816281;
0.10.fCCDF(2, 1).shouldApprox == 0.9128709;

See Also

Meta