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


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


java.lang.Math.atan() 用于计算角度的三角反正切。反正切也称为切线的倒数。此方法返回 -pi/2 和 pi/2 之间的值。

用法

public static double atan(double a)

参数

a = the value whose arc tangent is to be returned.

返回

It returns the arc tangent of the argument.
  • 如果参数是正数或负数,此方法将返回反正切值。
  • 如果参数为 NaN,则此方法将返回 NaN。
  • 如果参数为零,则此方法将返回与参数相同符号的零。

例子1

public class AtanExample1
{
    public static void main(String[] args) 
    {
        double a = 6.267;
        System.out.println(Math.atan(a));
    }
}

输出:

1.4125642791467878

例子2

public class AtanExample2
{
    public static void main(String[] args) 
    {
        double a = -1.0;
        System.out.println(Math.atan(a));
    }
}

输出:

-0.7853981633974483

例子3

public class AtanExample3
{
    public static void main(String[] args) 
    {
        double a = 0.0;
        // Input positive zero, Output positive zero
        System.out.println(Math.atan(a));
    }
}

输出:

0.0

示例 4

public class AtanExample4
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        System.out.println(Math.atan(a));
    }
}

输出:

1.2626272556789115

例 5

public class AtanExample5
{
    public static void main(String[] args) 
    {
        double a = 0.0/0;
        // Input NaN, Output NaN
        System.out.println(Math.atan(a));
    }
}

输出:

NaN






相关用法


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