此函數用於計算-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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。