Java StrictMath atan()方法
java.lang.StrictMath.atan() 方法返回一个反正切的值。返回的角度范围为-pi/2到pi/2.它包括以下情况:
- 如果参数为NaN,那么结果为NaN。
- 如果参数是0,那么结果是相同参数符号为零。
1 语法
public static double atan(double a)
2 参数
a :这是要返回其反正切值的参数。
3 返回值
此方法返回参数的反正切值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath atan()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
double d1 = 0.20 , d2 = 60.00, d3 = 0;
/* returns the arc tangent of a value, returned angle range is
-pi/2 to pi/2 */
double dAbsValue = StrictMath.atan(d1);
System.out.println("arc tangent of " + d1 + " = " + dAbsValue);
dAbsValue = StrictMath.atan(d2);
System.out.println("arc tangent of " + d2 + " = " + dAbsValue);
dAbsValue = StrictMath.atan(d3);
System.out.println("arc tangent of " + d3 + " = " + dAbsValue);
}
}
输出结果为:
arc tangent of 0.2 = 0.19739555984988078
arc tangent of 60.0 = 1.554131203080956
arc tangent of 0.0 = 0.0
热门文章
优秀文章