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


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


asinh()是Ruby中的內置函數,返回以弧度給出的角度的反雙曲正弦值。它接受範圍(-INFINITY,INFINITY)之間的所有值。

用法:Math.acosh(value) 

參數:該函數接受一個強製性參數值,該值指定弧度中的雙曲反角應大於或等於1。如果參數小於1,則返回域錯誤。


返回值:該函數返回以弧度給出的角度的反雙曲正弦值。範圍介於(-INFINITY,INFINITY)之間

例子1

#Ruby program for asinh() function 
  
#Assigning values 
val1 = 2 val2 = 877 val3 = 432 val4 = 43 
  
#Prints the acosh() value 
                                      puts Math.asinh(val1) 
                                          puts Math.asinh(val2) 
                                              puts Math.asinh(val3) 
                                                  puts Math.asinh(val4)

輸出

1.4436354751788103
7.4696544979749735
6.761574108393271
4.45448247706051

例子2

#Ruby program for asinh() function 
  
#Assigning values 
val1 = -24 val2 = -765 val3 = -98 val4 = -23 
  
#Prints the asinh() value 
                                          puts Math.asinh(val1) 
                                              puts Math.asinh(val2) 
                                                  puts Math.asinh(val3) 
                                                      puts Math.asinh(val4)

輸出

-3.8716347563877314
-7.333023441572332
-5.278140689034662
-3.8291136516208812

參考:https://devdocs.io/ruby~2.5/math#method-i-asinh



相關用法


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