MathPHP\Functions\Special::hypergeometric PHP Method

hypergeometric() public static method

https://en.wikipedia.org/wiki/Hypergeometric_function ∞ ____ \ a⁽ⁿ⁾ * b⁽ⁿ⁾ * zⁿ ₂F₁ = > ---------------- c⁽ⁿ⁾ * n! ‾‾‾‾ n=0
public static hypergeometric ( number $a, number $b, number $c, number $z ) : number
$a number the first numerator value
$b number the second numerator value
$c number the denominator value
$z number |z| < 1
return number
    public static function hypergeometric($a, $b, $c, $z)
    {
        if (abs($z) >= 1) {
            throw new Exception\OutOfBoundsException('|z| must be < 1. |z| = ' . abs($z));
        }
        return self::generalizedHypergeometric(2, 1, $a, $b, $c, $z);
    }