MathPHP\Functions\Special::incompleteBeta PHP 메소드

incompleteBeta() 공개 정적인 메소드

Generalized form of the beta function https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function
public static incompleteBeta ( $x, $a, $b ) : number
$x Upper limit of the integration 0 ≦ x ≦ 1
$a Shape parameter a > 0
$b Shape parameter b > 0
리턴 number
    public static function incompleteBeta($x, $a, $b)
    {
        return self::regularizedIncompleteBeta($x, $a, $b) * self::beta($a, $b);
    }