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


Java Math.asin()用法及代碼示例


java.lang.Math.asin() 用於計算角度的三角反正弦。反正弦也稱為正弦的逆。此方法返回 -Î/2 和 Î/2 之間的值。

用法

public static double asin(double a)

參數

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

返回

It returns the arc sine of the argument.
  • 如果參數為正數或負數,此方法將返回反正弦值。
  • 如果參數為 NaN 或超出範圍 -1 和 1,則此方法將返回 NaN。
  • 如果參數為零,此方法將返回與參數相同符號的零。

例子1

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

輸出:

1.5707963267948966

例子2

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

輸出:

-1.5707963267948966

例子3

public class AsinExample3
{
    public static void main(String[] args) 
    {
        double a = 1.820;
        // value of a is greater than 1 so Output is NaN
        System.out.println(Math.asin(a));
    }
}

輸出:

NaN

示例 4

public class AsinExample4
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        // return NaN because Math.PI value is 3.414 that is greater than 1
        System.out.println(Math.asin(a));
    }
}

輸出:

NaN

例 5

public class AsinExample5
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        double b = Math.toRadians(a);
        System.out.println(Math.asin(b));
    }
}

輸出:

0.054858647341251204






相關用法


注:本文由純淨天空篩選整理自 Java Math.asin() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。