在 R 编程中计算一个值的反正切 - atan2(y, x)函数
借助atan2(y, x)
方法,我们可以在 R 编程中得到 x 轴与从原点到 (x, y) 的向量之间的反正切。
Syntax: atan2(y, x)
Return: Returns the arc tangent value.
示例 1:
x <- c(2, 3, 4)
# Using atan2(y, x) method
gfg <- atan2(1, x)
print(gfg)
输出:
[1] 0.4636476 0.3217506 0.2449787
示例 2:
x <- c(2, 3, 1)
# Using atan2(y, x) method
gfg <- atan2(pi/3, x)
print(gfg)
输出:
[1] 0.4823479 0.3358424 0.8084488