定义和用法
这个gmp_binomial()函数计算二项式系数。
描述
gmp_binomial() 计算以 C(n, k) 给出的二项式系数。
用法
gmp_binomial ( mixed $num1 , int $k ):GMP
参数
Sr.No | 参数及说明 |
---|---|
1 |
num1 它可以是 GMP 资源编号、gmp 对象或数字字符串。 |
2 |
k 组合数。 |
返回值
PHP gmp_binomial() 函数返回一个 GMP 数,它是一个二项式系数。
PHP版本
此函数适用于 7.3.0 以上的 PHP 版本。
例子1
gmp_and 的工作 -
<?php
$num1 = gmp_binomial('4',2);
echo "The binomial coefficient of (4,2) is ".$num1;
echo "<br/><br/>";
$num2 = gmp_binomial('5',2);
echo "The binomial coefficient of (5, 2) is ".$num2;
?>
这将产生以下结果 -
The binomial coefficient of (4,2) is 6 The binomial coefficient of (5, 2) is 10
例子2
使用 GMP 编号 -
<?php
$num1 = gmp_init(4);
$num2 = gmp_binomial($num1,2);
echo "The binomial coefficient of (4,2) is ".$num2;
?>
这将产生以下结果 -
The binomial coefficient of (4,2) is 6
相关用法
- PHP gmp_clrbit()用法及代码示例
- PHP gmp_cmp()用法及代码示例
- PHP gmp_testbit()用法及代码示例
- PHP gmp_root()用法及代码示例
- PHP gmp_div_r()用法及代码示例
- PHP gmp_sub()用法及代码示例
- PHP gmp_sqrt()用法及代码示例
- PHP gmp_import()用法及代码示例
- PHP gmp_pow()用法及代码示例
- PHP gmp_scan0()用法及代码示例
- PHP gmp_or()用法及代码示例
- PHP gmp_abs()用法及代码示例
- PHP gmp_hamdist()用法及代码示例
- PHP gmp_strval()用法及代码示例
- PHP gmp_sqrtrem()用法及代码示例
- PHP gmp_neg()用法及代码示例
- PHP gmp_com()用法及代码示例
- PHP gmp_legendre()用法及代码示例
- PHP gmp_gcd()用法及代码示例
- PHP gmp_fact()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - gmp_binomial() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。