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
相關用法
- Perl uc()用法及代碼示例
- Perl each()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl ord()用法及代碼示例
- Perl log()用法及代碼示例
- Perl int()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl hex用法及代碼示例
- Perl cos()用法及代碼示例
- Perl tell()用法及代碼示例
- Perl chr()用法及代碼示例
- Perl rindex()用法及代碼示例
- Perl join()用法及代碼示例
- Perl keys()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Perl | exp Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。