當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。