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
相关用法
- Ruby Math log()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math cosh()用法及代码示例
- Ruby Math atanh()用法及代码示例
- Ruby Math cbrt()用法及代码示例
- Ruby Math log2()用法及代码示例
- Ruby Math hypot()用法及代码示例
- Ruby Math erfc()用法及代码示例
- Ruby Math sinh()用法及代码示例
- Ruby Math frexp()用法及代码示例
- Ruby Math atan2()用法及代码示例
- Ruby Math ldexp()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math tan() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。