如何计算两个向量之间的角度?

时间:2016-11-16 20:10:46

标签: java math vector cos

我们试图获得v和u之间的cos值,但我们得到的结果远高于1或小于0

其中:

vx = in.nextInt(); // x speed of your pod
vy = in.nextInt(); // y speed of your pod

int ux = nextCheckPointIdX - x;
int uy = nextCheckPointIdY - y;

这是公式:

double cos = (vx*ux + vy*uy) / ( Math.sqrt(Math.pow(vx, 2) + Math.pow(vy, 2)) + Math.sqrt(Math.pow(ux, 2) + Math.pow(uy, 2)) );

您是否在上一行中发现任何错误?

1 个答案:

答案 0 :(得分:1)

分母遇到了问题。

int num = (vx*ux + vy*uy);
double den = (Math.sqrt(Math.pow(vx, 2) + Math.pow(vy, 2)) * (Math.sqrt(Math.pow(ux, 2) + Math.pow(uy, 2))) );
double cos =  num / den;
System.out.println(cos);
System.out.println(Math.acos(cos));