How to find intersection between two line

1 次查看(过去 30 天)
Could anyone help me with this? I'm trying to find all of the points where my y and y_line interection. Thank you so much.

回答(2 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020-4-21
编辑:KALYAN ACHARJYA 2020-4-21
idx=find(x==y)
And from the index, you get the value.
  1 个评论
Rik
Rik 2020-4-21
This will only turn up values that are exactly equal. Considering that float rounding errors are likely, this could miss several intersections.

请先登录,再进行评论。


Rik
Rik 2020-4-21
编辑:Rik 2020-4-21
tol=2*eps;
L_intersect = abs(y-y_line.Value) < tol;
x(L_intersect)
%you could use find(L_intersect), but you don't really need it here

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by