Ruby Math atan()函数
atan() 是Ruby中的一个内置函数,用于返回一个数字的反正切值,即给这个函数一个反正切值,它将返回该值所对应的弧度角。此函数接受范围为 [-inf, +inf] 的所有数字。
语法 :Math.atan(value)
参数 :该函数接受一个强制性的参数值,我们必须找到其对应的角度。
返回值 :它以弧度为单位返回-pi/2 至 +pi/2 范围内的角度。
例子 1 :
#Ruby program for atan() function
#Assigning values
val1 = 1 val2 = 0.5 val3 = -1 val4 = -0.9
#Prints the atan() value
puts Math.atan(val1)
puts Math.atan(val2)
puts Math.atan(val3)
puts Math.atan(val4)
输出:
0.7853981633974483
0.4636476090008061
-0.7853981633974483
-0.7328151017865066
例2 :
#Ruby program for atan() function
#Assigning values
val1 = 0.9 val2 = 0.2 val3 = -0.78 val4 = -0.32
#Prints the atan() value
puts Math.atan(val1)
puts Math.atan(val2)
puts Math.atan(val3)
puts Math.atan(val4)
输出:
0.7328151017865066
0.19739555984988078
-0.6624262938331512
-0.3097029445424562
参考资料 : https://devdocs.io/ruby~2.5/math#method-c-atan