Java - StrictMath atan(double) 方法



描述

Java StrictMath atan(double a) 返回一个角度的反正切值,范围在 -pi/2 到 pi/2 之间。特殊情况 -

  • 如果参数是 NaN,则结果为 NaN。

  • 如果参数为零,则结果为与参数符号相同的零。

结果必须在正确舍入结果的 1 ulp 内。结果必须是半单调的。

声明

以下是 java.lang.StrictMath.atan() 方法的声明

public static double atan(double a)

参数

a − 要返回其反正切值的值。

返回值

此方法返回参数的反正切值。

异常

获取角度的反正切示例

以下示例显示了 StrictMath atan() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

      // convert x to radians
      x = StrictMath.toRadians(x);

      // get the arc tangent of x
      System.out.println("StrictMath.atan(" + x + ")=" + StrictMath.atan(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

StrictMath.atan(0.027415567780803774)=0.0274087022410345

获取 0° 角的反正切示例

以下示例显示了 StrictMath atan() 方法在 0° 角情况下的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a variable x which is equal to zero
      double x = 0.0d;

      // convert x to radians
      x = StrictMath.toRadians(x);

      // get the arc tangent of x
      System.out.println("StrictMath.atan(" + x + ")=" + StrictMath.tan(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

StrictMath.atan(0.0)=0.0

获取 45° 角的反正切示例

以下示例显示了 StrictMath atan() 方法在 45° 角情况下的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a variable x which is equal to zero
      double x = 45.0d;

      // convert x to radians
      x = StrictMath.toRadians(x);

      // get the arc tangent of x
      System.out.println("StrictMath.atan(" + x + ")=" + StrictMath.tan(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

StrictMath.atan(0.7853981633974483)=0.9999999999999999
java_lang_strictmath.htm
广告