Java StrictMath atan2()方法
java.lang.StrictMath.atan2() 方法通过计算-pi的y/xin 范围内的圆弧相切的圆周率计算theta。它返回从直角坐标(x, y)为极坐标 (r, theta) 转化率的角度2θ。
1 语法
public static double atan2(double y, double x)
2 参数
y :这是纵坐标。
x : 这是横轴坐标。
3 返回值
此方法返回对应于直角坐标的点(x,y)到点(r, theta)在极坐标系中的θ组成部分。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath atan2()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
double d1 = 0.6 , d2 = 90.00;
/* returns the theta component of the point (r, theta) in
polar coordinates that corresponds to the point (x, y)
in Cartesian coordinates */
double dAbsValue = StrictMath.atan2(d1, d2);
System.out.println("arc tangent value after conversion = " + dAbsValue);
dAbsValue = StrictMath.atan2(d2 , d1);
System.out.println("arc tangent value after conversion = " + dAbsValue);
}
}
输出结果为:
arc tangent value after conversion = 0.0066665679038682285
arc tangent value after conversion = 1.5641297588910283
热门文章
优秀文章