math arctan在android项目中不起作用

时间:2012-06-26 22:18:08

标签: java math

在以下代码中,

float i = Float.parseFloat(a);
float j = Float.parseFloat(b);
double div = (double)j/i;  
float theta = (float) Math.atan(Math.toRadians(div));

theta获取错误的值。到目前为止,我可以看到它总是计算Math.tan(我也尝试了这个,它给了我相同的结果)。因此,即使我写Math.tanMath.atan,我也会得到相同的结果。

任何人都可以帮助我吗?

具体例子:

i,j----> theta I get:

3,4-----> 0.023 while the correct one is arctan(4/3)=53.13 not tan(4/3)=0.023
3,6-----> 0.052 while the correct one is arctan(9/3)=71.56 not tan(9/3)=0.052

1 个答案:

答案 0 :(得分:11)

看起来你在整个地方奇怪地转换。这就是我想要的:

public class Test {
    public static void main(String[] args) throws Exception {
        double div = (double)4/3;  
        float theta = (float) Math.toDegrees(Math.atan(div));
        System.out.println(theta); // 53.130104
    }
}

假设你想要4/3作为渐变,那根本就不是角度 - 所以在它上面调用Math.toRadians是不合适的。您希望在渐变上调用Math.atan以获得弧度值,然后在弧度值上调用Math.toDegrees以获得度数。