-2

我已经使用以下计算来计算测量值,但问题是它以弧度而不是度数输出计算。我的问题是如何将计算转换为输出度数。我知道 Math.toDegress 方法,但我在这种情况下无法实现它。这是我的 onCreate 计算完成的地方:

public void onClick(View v) {
        // TODO Auto-generated method stub

        try {

            String getoffsetlength = data.offsetLength.getText().toString(); 
            String getoffsetdepth = data.offsetDepth.getText().toString(); 
            String getductdepth = data.ductDepth.getText().toString(); 

            double tri1,tri2;
            double marking1,marking2;


            double off1 = Double.parseDouble(getoffsetlength);//length
            double off2 = Double.parseDouble(getoffsetdepth);//depth
            double off3 = Double.parseDouble(getductdepth);//duct depth


            marking1 = Math.sqrt(Math.pow(off1,2) + Math.pow(off2,2));
            tri1 = Math.atan(off2 / off1);

            tri2 = (180 - tri1) / 2;
            marking2 = off3 / Math.tan(tri2);



            Intent myIntent = new Intent(MainActivity.this, CalcResult.class);
            myIntent.putExtra("number1", marking1);
            myIntent.putExtra("number2", marking2);
            startActivity(myIntent);
            //make a toast 
            Toast.makeText(getBaseContext(), "Calculating!", Toast.LENGTH_SHORT).show(); 



        } catch (NumberFormatException e) {
            // TODO: handle exception
            System.out.println("Must enter a numeric value!");


        }

    }


}
4

2 回答 2

3

不要重新发明轮子,使用:Math.toDegrees(double angrad)

来自文档:

返回提供的弧度角的度数。结果是angrad * 180 / pi

于 2013-10-08T20:55:23.150 回答
0

弧度到度数的转换只是与常数因子的乘法,Math.toDegrees()如果您有任何理由,可以自己使用或定义它:

public static final double TO_DEGREES = 180.0 / Math.PI;
public static final double TO_RADIANS = Math.PI / 180.0;

但是您的代码看起来不对:

Math.toDegrees(Math.sqrt(Math.pow(off1,2) + Math.pow(off2,2)));

这可以简化为

Math.toDegrees(Math.sqrt(off1 * off1 + off2 * off2));

这更容易识别:您使用 Math.sqrt(off1 * off1 + off2 * off2) 计算距离,但将此值用作传递给 toDegrees 的角度。

我怀疑这是正确的。

回答您的评论:您将值“angleRadians”转换为度数

Double angleDegrees = Math.toRadians(angleRadians);
于 2013-10-08T21:06:13.620 回答