gmp_binomial()函数是 PHP 中的内置函数,用于计算二项式系数。二项式系数通常表示为“n choose k” 或“C(n, k)”,表示从一组“n” 不同元素中选择“k” 元素的方法数量,而不考虑顺序。
用法:
gmp_binomial(GMP|int|string $n, int $k): GMP
参数:该函数接受两个参数,如下所述。
- $n: 该参数必须是整数。
- $k:该参数必须是整数类型。如果该参数为负数。就会出现这样的错误。
返回值: gmp_binomial()函数返回数字 c(n, k) 的系数;
程序1:下面的程序演示了gmp_binomail()函数。
PHP
<?php
// Assuming you have the GMP extension enabled
$n = 6 ;
$k = 2 ;
$binomialCoefficient = gmp_binomial($n, $k);
echo "Binomial Coefficient C($n, $k) is: "
. $binomialCoefficient . "\n";
?>
输出
Binomial Coefficient C(6, 2) is: 15
程序2:下面的程序演示了gmp_binomail()函数。
PHP
<?php
// Assuming gmp library in enable in your PHP
try {
$n = 5; // Total number of distinct elements
$k = -2 ;
if($k < 0) {
throw new Exception("$k value must be greater than 0") ;
}
$binomialCoefficient = gmp_binomial($n, $k);
echo "Binomial Coefficient C($n, $k) is: "
. $binomialCoefficient . "\n";
} catch(Exception $e) {
echo $e->getMessage() ;
}
?>
输出:
k value must be greater than 0
参考:https://www.php.net/manual/en/function.gmp-binomial.php
相关用法
- PHP gmp_binomial()用法及代码示例
- PHP gmp_div()用法及代码示例
- PHP gmp_fact()用法及代码示例
- PHP gmp_init()用法及代码示例
- PHP gmp_kronecker()用法及代码示例
- PHP gmp_lcm()用法及代码示例
- PHP gmp_testbit()用法及代码示例
- PHP gmp_abs()用法及代码示例
- PHP gmp_and()用法及代码示例
- PHP gmp_clrbit()用法及代码示例
- PHP gmp_cmp()用法及代码示例
- PHP gmp_com()用法及代码示例
- PHP gmp_div_q()用法及代码示例
- PHP gmp_div_qr()用法及代码示例
- PHP gmp_div_r()用法及代码示例
- PHP gmp_divexact()用法及代码示例
- PHP gmp_export()用法及代码示例
- PHP gmp_gcd()用法及代码示例
- PHP gmp_gcdext()用法及代码示例
- PHP gmp_hamdist()用法及代码示例
- PHP gmp_import()用法及代码示例
- PHP gmp_intval()用法及代码示例
- PHP gmp_jacobi()用法及代码示例
- PHP gmp_legendre()用法及代码示例
- PHP gmp_mod()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP gmp_binomial() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。