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


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


acosh()是Ruby中的內置函數,返回以弧度給出的角度的反雙曲餘弦值。

用法:Math.acosh(value) 

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


返回值:該函數以弧度返回參數的反雙曲正弦值,範圍為[0,inf]。

例子1

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

輸出

1.3169578969248166
7.469653847888966
6.761571429209457
4.454212060602711

例子2

#Ruby program for acosh() function 
  
#Assigning values 
val1 = 20 val2 = 83 val3 = 332 val4 = 3 
  
#Prints the acosh() value 
                                      puts Math.acosh(val1) 
                                          puts Math.acosh(val2) 
                                              puts Math.acosh(val3) 
                                                  puts Math.acosh(val4)

輸出

3.6882538673612966
5.111951496643704
6.498279881360139
1.762747174039086

參考:https://devdocs.io/ruby~2.5/cmath#method-i-acosh



相關用法


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