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


Ruby Math atan2()用法及代碼示例


atan2()是Ruby中的內置函數,返回(y /x)的反角,其中y是y坐標的比例,x是x坐標的比例。數值介於-pi和+ pi之間,代表(x,y)點與正x軸的角度theta。它是X軸正方向與點(x,y)之間的逆時針角度(以弧度為單位)。

用法:Math.atan2(y, x) 

參數:該函數接受x和y坐標。


返回值:它返回-pi和+ pi之間的數值,代表(x,y)點和正x軸的角度θ

例子1

#Ruby program for atan2() function 
  
#Assigning values 
y1 = 10 x1 = 10 
  
    y2 
    = 15 x2 = 10 
  
#Prints the atan2() value 
              puts Math.atan2(y1, x1) 
                  puts Math.atan2(y2, x2)

輸出

0.7853981633974483
0.982793723247329

例子2

#Ruby program for atan2() function 
  
#Assigning values 
y1 = 10 x1 = 5 
  
    y2 
    = 29 x2 = 17 
  
#Prints the atan2() value 
              puts Math.atan2(y1, x1) 
                  puts Math.atan2(y2, x2)

輸出

 1.1071487177940904
1.0405805540182667

參考:https://devdocs.io/ruby~2.5/math#method-c-atan2Ruby



相關用法


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