当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。