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