此函数用于计算-PI至PI范围内的Y /X的反正切。
用法:atan2(Y, X)
参数:
Y和X是轴值
返回值:函数将-PI到PI的Y /X的反正切值返回。
范例1:
#!/usr/bin/perl
# Assigning values to X and y
$Y = 45;
$X = 70;
# Calling atan2() function
$return_val = atan2($Y, $X);
# printing the value
print "atan2 of 45/70 is : $return_val\n";
输出:
atan2 of 45/70 is : 0.571337479833627
范例2:
#!/usr/bin/perl
# Assigning values to X and y
$Y = -30;
$X = 40;
# Calling atan2() function
$return_val = atan2($Y, $X);
# printing the value
print "atan2 of -30/40 is : $return_val\n";
输出:
atan2 of -30/40 is : -0.643501108793284
相关用法
- Perl log()用法及代码示例
- Perl each()用法及代码示例
- Perl int()用法及代码示例
- Perl oct()用法及代码示例
- Perl sin()用法及代码示例
- Perl uc()用法及代码示例
- Perl ord()用法及代码示例
- Perl exp用法及代码示例
- Perl tell()用法及代码示例
- Perl chr()用法及代码示例
- Perl abs()用法及代码示例
- Perl hex用法及代码示例
- Perl cos()用法及代码示例
- Perl delete()用法及代码示例
- Perl lcfirst()用法及代码示例
注:本文由纯净天空筛选整理自Akanksha_Rai大神的英文原创作品 Perl | atan2() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。