當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP gmp_binomial()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP gmp_binomial() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。