Ruby Math tan()函数
tan() 是Ruby中的一个内置函数,它返回以弧度表示的给定角度的正切值,其范围是 [-inf, +inf] 。 返回值的范围是 [-inf, +inf]。
语法 :Math.tan(value)
参数 :该函数接受一个强制性的参数值,其对应的正切值将被返回。
返回值 :它返回正切值。
例子 1 :
#Ruby program for tan() function
#Assigning values
val1 = 1 val2 = 0 val3 = 989 val4 = -8932
#Prints the tan() value
puts Math.tan(val1)
puts Math.tan(val2)
puts Math.tan(val3)
puts Math.tan(val4)
输出:
1.5574077246549023
0.0
-0.6866146142998235
-0.48563022371184766
例2 :
#Ruby program for tan() function
#Assigning values
val1 = -1023 val2 = 0.67 val3 = 98 val4 = -39
#Prints the tan() value
puts Math.tan(val1)
puts Math.tan(val2)
puts Math.tan(val3)
puts Math.tan(val4)
输出:
2.290822861412639
0.7922541747282569
0.6998536538095259
-3.614554407101535
参考资料 : https://devdocs.io/ruby~2.5/math#method-c-tan