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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。