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


Perl exp用法及代碼示例


Perl中的exp函數計算“e”,將其提高為參數實數的冪。
在這裏“e”是歐拉數或自然對數的底數,或者通常稱為無理數,其近似值為2.718281828,並且是最重要的數學常數之一。此“e”被廣泛用於許多場合,例如複利,伯努利試驗,正態分布,微積分等等。

用法: exp value

參數:
value:這是實際值,它定義了必須提高的功率“e”。


返回值:e的值提高到給定實際值的冪。

示例1:

#!/usr/bin/perl 
  
# Initialising some values for the 
# parameter of the exp function 
$A = 0; 
$B = 1; 
$C = 10; 
$D = 20; 
  
# Calling the exp function 
$E = exp $A; 
$F = exp $B; 
$G = exp $C; 
$H = exp $D; 
  
# Getting the value of "e" raised to the 
# power of the given parameter. 
print "$E\n"; 
print "$F\n"; 
print "$G\n"; 
print "$H\n";


輸出:

1
2.71828182845905
22026.4657948067
485165195.40979

示例2:

#!/usr/bin/perl 
  
# Calling the exp function 
# Without Intitializing values to variables 
$A = exp 1; 
$B = exp 2; 
$C = exp 3; 
$D = exp 4; 
  
# Getting the value of "e" raised to the 
# power of values taken as the parameter. 
print "$A\n"; 
print "$B\n"; 
print "$C\n"; 
print "$D\n";

輸出:

2.71828182845905
7.38905609893065
20.0855369231877
54.5981500331442


相關用法


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