Java中的Java .lang.Math.atan2()
atan2()是Java中的一个内置方法,用于从极坐标返回 theta 分量。 atan2() 方法返回一个介于 - 和表示角度 (x, y) 点和正 x 轴的关系。它是正 X 轴和点 (x, y) 之间的逆时针角度,以弧度为单位。
句法 :
Math.atan2(double y, double x)
where, x and y are X and Y coordinates in double data type.
返回:
它返回一个双精度值。双值是从极坐标(r,theta)。
示例:演示 atan2() 方法的程序
Java
// Java program for implementation of
// atan2() method
import java.util.*;
class GFG {
// Driver Code
public static void main(String args[])
{
// X and Y coordinates
double x = 90.0;
double y = 15.0;
// theta value from polar coordinate (r, theta)
double theta = Math.atan2(y, x);
System.out.println(theta);
}
}
输出
0.16514867741462683