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


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


atan()是Ruby中的內置函數,返回數字的反正切值,表示對該函數給出正切值,它將以弧度返回與該值對應的角度。反正切是切線的逆運算。此函數接受範圍為[-inf,+ inf]的所有數字。

用法:Math.atan(value) 

參數:該函數接受一個強製性參數值,我們必須找到其對應角度。


返回值:它返回以弧度為單位的角度,範圍為-pi /2到+ pi /2。

例子1

#Ruby program for atan() function 
  
#Assigning values 
val1 = 1 val2 = 0.5 val3 = -1 val4 = -0.9 
  
#Prints the atan() value 
                                      puts Math.atan(val1) 
                                          puts Math.atan(val2) 
                                              puts Math.atan(val3) 
                                                  puts Math.atan(val4)

輸出

0.7853981633974483
0.4636476090008061
-0.7853981633974483
-0.7328151017865066

例子2

#Ruby program for atan() function 
  
#Assigning values 
val1 = 0.9 val2 = 0.2 val3 = -0.78 val4 = -0.32 
  
#Prints the atan() value 
                                           puts Math.atan(val1) 
                                               puts Math.atan(val2) 
                                                   puts Math.atan(val3) 
                                                       puts Math.atan(val4)

輸出

0.7328151017865066
0.19739555984988078
-0.6624262938331512
-0.3097029445424562

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



相關用法


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