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


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


tanh()是Ruby中的內置函數,返回以弧度表示的值的雙曲線正切值。傳遞的值在[-inf,+ inf]範圍內。返回的值在[-1,+1]範圍內。

用法:Math.tanh(value) 

參數:該函數接受一個強製性參數值,該參數值將返回對應的雙曲正切值。


返回值:返回雙曲正切值。

例子1

#Ruby program for tanh() function 
  
#Assigning values 
val1 = -1023 val2 = 0.67 val3 = 98 val4 = -39 
  
#Prints the tanh() value 
                                           puts Math.tanh(val1) 
                                               puts Math.tanh(val2) 
                                                   puts Math.tanh(val3) 
                                                       puts Math.tanh(val4)

輸出

-1.0
0.5849798828807289
1.0
-1.0

例子2

#Ruby program for tanh() function 
  
#Assigning values 
val1 = 0 val2 = 100 val3 = -98 val4 = -6 
  
#Prints the tanh() value 
                                       puts Math.tanh(val1) 
                                           puts Math.tanh(val2) 
                                               puts Math.tanh(val3) 
                                                   puts Math.tanh(val4)

輸出

0.0
1.0
-1.0
-0.9999877116507956

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



相關用法


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