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


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



描述

这个java.lang.Math.atan(double a)返回角度的反正切,范围为 -pi/2 到 pi/2。特殊情况~

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

  • 如果自变量为零,则结果为零,其符号与自变量相同。

结果必须在正确舍入结果的 1 ulp 以内。结果必须是 semi-monotonic。

声明

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

public static double atan(double a)

参数

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

返回值

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

异常

NA

示例

下面的例子展示了 lang.Math.atan() 方法的用法。

package com.tutorialspoint;

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;

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

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

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

Math.atan(0.027415567780803774)0.0274087022410345

相关用法


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