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