当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.lang.Math.atan2()用法及代码示例



atan2()是Java中的内置方法,用于从极坐标返回theta分量。 atan2()方法返回介于–\pi\pi代表角度\theta(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.

返回值:
它返回一个双精度值。双精度值是\theta来自极坐标(r,theta)。


例:程序演示atan2()方法

// 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(x, y); 
  
        System.out.println(theta); 
    } 
}

输出:

1.4056476493802699


相关用法


注:本文由纯净天空筛选整理自Striver大神的英文原创作品 java.lang.Math.atan2() in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。