定義和用法
這個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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。