初学者007 发表于 2010-3-25 08:47

关于matlab中的cross函数?

二维坐标平面下:a=;b=;c=;d=;
                         E=cross(a,b);F=cross(c,d);
                         K=cross;
请问E=cross(a,b),F=cross(c,d),K=cross(E,F)这三句的意思是什么?
E=cross(a,b),F=cross(c,d),后E,F是不是分别表示向量ab,cd;那两条平行向量E,F ,K=cross后K是不是表示两条平行线在无限远处的交点呢?

ChaChing 发表于 2010-3-25 09:34

W = cross(U,V) returns the cross product of the vectors U and V. That is,
W = U x V. U and V are usually 3-element vectors. If U and V are multidimensional arrays, cross returns the cross product of U and V along the first dimension of length 3.

E,F是不是表示向量ab,cd! 向量ab,cd应该是E=b-a; F=d-c;
若norm(K)=0, 表示两条平行线(向量E,F)

[ 本帖最后由 ChaChing 于 2010-3-25 15:59 编辑 ]

初学者007 发表于 2010-3-25 14:32

回复 沙发 ChaChing 的帖子

不是很懂!请问:
         已知a=;b=;c=;d=;
怎么写代码实现:
          将a,b两点连成直线ab;将c,d两点连成直线cd;
          并且求直线ab与直线cd(ab与cd平行)在无限远处的交点?

ChaChing 发表于 2010-3-25 16:03

回复 板凳 初学者007 的帖子

a=;b=;c=;d=;
E=b-a; F=d-c; K=cross(E,F); norm(K)

因为norm(K)=0, 所以ab与cd直线平行
但个人不解的是, 直线平行了, 要求在无限远处的交点???

初学者007 发表于 2010-3-25 21:00

回复 地板 ChaChing 的帖子

恩,要求解的正是两平行线在无限远处的交点。
页: [1]
查看完整版本: 关于matlab中的cross函数?