java.lang.Math.atan(double a)方法實例
java.lang.Math.atan(double a) 返回一個角的反正切,在 -pi/2 到 pi/2 範圍內。特殊情況:
-
如果參數為NaN,那麼結果為NaN。
-
如果參數是零,那麼結果是相同的符號參數為零。
結果必須在1 ULP的正確舍入的結果。結果必須具有半單調性。
聲明
以下是java.lang.Math.atan()方法的聲明
public static double atan(double a)
參數
-
a -- 其反正切值將被返回。
返回值
此方法返回參數的反正切值。
異常
-
NA
例子
下麵的例子顯示lang.Math.atan()方法的使用。
package com.yiibai; 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