Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在Tinyos (nesC)中的两个向量之间进行叉积?
如果我有position=p1+x*ex+y*ey;;其中 ex,ey: 是向量。
position=p1+x*ex+y*ey;
我正在寻找,但找不到任何帮助!
那么有什么有用的方法可以做到这一点吗?如果我去定义叉积有一个我现在不知道的角度如何从两个向量中得到它?
如果您有两个向量 a 和 b(a = (a1, a2, a3) 和 b = (b1, b2, b3)),则可以使用以下公式计算叉积:
axb = (a2*b3 - a3*b2, a3*b1 - a1*b3, a1*b2 - a2*b1)