atan2()是Ruby中的内置函数,返回(y /x)的反角,其中y是y坐标的比例,x是x坐标的比例。数值介于-pi和+ pi之间,代表(x,y)点与正x轴的角度theta。它是X轴正方向与点(x,y)之间的逆时针角度(以弧度为单位)。
用法:Math.atan2(y, x)
参数:该函数接受x和y坐标。
返回值:它返回-pi和+ pi之间的数值,代表(x,y)点和正x轴的角度θ
例子1:
#Ruby program for atan2() function
#Assigning values
y1 = 10 x1 = 10
y2
= 15 x2 = 10
#Prints the atan2() value
puts Math.atan2(y1, x1)
puts Math.atan2(y2, x2)
输出:
0.7853981633974483 0.982793723247329
例子2:
#Ruby program for atan2() function
#Assigning values
y1 = 10 x1 = 5
y2
= 29 x2 = 17
#Prints the atan2() value
puts Math.atan2(y1, x1)
puts Math.atan2(y2, x2)
输出:
1.1071487177940904 1.0405805540182667
参考:https://devdocs.io/ruby~2.5/math#method-c-atan2Ruby
相关用法
- Ruby Math log()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math tan()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math frexp()用法及代码示例
- Ruby Math erfc()用法及代码示例
- Ruby Math ldexp()用法及代码示例
- Ruby Math lgamma()用法及代码示例
- Ruby Math log10()用法及代码示例
- Ruby Math log2()用法及代码示例
- Ruby Math hypot()用法及代码示例
- Ruby Math cosh()用法及代码示例
- Ruby Math atanh()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math atan2() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。