Intersection of two vector lines

1 次查看(过去 30 天)
How would I go about finding the intersection point of two vector lines in the form:
a = b*t + u
c = d*s + v
where a,b and s is a 3x1 matrix?

采纳的回答

Matt J
Matt J 2023-4-27
编辑:Matt J 2023-4-27
where a,b and s is a 3x1 matrix?
I assume you really mean that a,b,u,c,d,v are 3x1 and t,s are scalars.
ts=[b,-d]\( v-u );
intersection=b*ts(1)+u
  2 个评论
Matt J
Matt J 2023-4-27
I'm glad, but please Accept-click the answer to indicate that (and likewise for previous answers you may not have accept-clicked).

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by