位置:首页 > Java技术 > java.lang > java.lang.Math.atan2(double y,double x)方法实例

java.lang.Math.atan2(double y,double x)方法实例

java.lang.Math.atan2(double y,double x) 该方法通过计算y/x反正切-pi到pi的范围内计算theta。到极性相关(r, theta)转换为矩形坐标(x,y)。

一个结果必须在2 ULPS的正确舍入的结果。结果必须具有半单调性。

声明

以下是java.lang.Math.atan2()方法的声明

public static double atan2(double y, double x)

参数

  • y -- 纵坐标

  • x -- 横轴坐标

返回值

此方法返回对应于直角坐标点(x,y)到点(r, theta)在极坐标系中的θ组成部分。

异常

  • NA

例子

下面的例子显示lang.Math.atan2()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get a variable x which is equal to PI/2
      double x = Math.PI / 2;

      // get a variable y which is equal to PI/3
      double y = Math.PI / 3;

      // convert x  and y to degrees
      x = Math.toDegrees(x);
      y = Math.toDegrees(y);

      // get the polar coordinates
      System.out.println("Math.atan2(" + x + "," + y + ")=" + Math.atan2(x, y));

   }
}

让我们来编译和运行上面的程序,这将产生以下结果:

Math.atan2(90.0,59.99999999999999)=0.9827937232473292