Ruby Math atanh()函数
atanh() 是Ruby中的一个内置函数,用于返回以弧度为单位的某个角度的反双曲正切值。它接受 [-1, +1] 范围内的值,并返回 [-INFINITY, INFINITY] 的值。
语法 :Math.atanh(value)
参数 :该函数接受一个强制性的 参数值 ,它指定了在 [-1, 1] 范围内的反双曲角,以弧度为单位 。
返回值 :它返回以弧度为单位的某个角度的反双曲正切值。
例子 1 :
#Ruby program for atanh() function
#Assigning values
val1 = -1 val2 = 1 val3 = -0.5 val4 = 0.7
#Prints the atanh() value
puts Math.atanh(val1)
puts Math.atanh(val2)
puts Math.atanh(val3)
puts Math.atanh(val4)
输出:
-Infinity
Infinity
-0.5493061443340548
0.8673005276940531
例2 :
#Ruby program for atanh() function
#Assigning values
val1 = -0.7 val2 = 0.6 val3 = -0.56 val4 = 0.90
#Prints the atanh() value
puts Math.atanh(val1)
puts Math.atanh(val2)
puts Math.atanh(val3)
puts Math.atanh(val4)
输出:
-0.8673005276940531
0.6931471805599453
-0.632833186665638
1.4722194895832204
参考资料 : https://devdocs.io/ruby~2.5/math#method-c-atanh