MathPHP\Probability\Distribution\Continuous\Beta::CDF PHP 메소드

CDF() 공개 정적인 메소드

cdf = Iₓ(α,β)
public static CDF ( number $x, number , number ) : float
$x number x ∈ (0,1)
number shape parameter α > 0
number shape parameter β > 0
리턴 float
    public static function CDF($x, $α, $β)
    {
        Support::checkLimits(self::LIMITS, ['x' => $x, 'α' => $α, 'β' => $β]);
        return Special::regularizedIncompleteBeta($x, $α, $β);
    }