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