Filter löschen
Filter löschen

How to find intersection between two line

1 Ansicht (letzte 30 Tage)
Nhut Ngo
Nhut Ngo am 21 Apr. 2020
Bearbeitet: Rik am 21 Apr. 2020
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.

Antworten (2)

KALYAN ACHARJYA
KALYAN ACHARJYA am 21 Apr. 2020
Bearbeitet: KALYAN ACHARJYA am 21 Apr. 2020
idx=find(x==y)
And from the index, you get the value.
  1 Kommentar
Rik
Rik am 21 Apr. 2020
This will only turn up values that are exactly equal. Considering that float rounding errors are likely, this could miss several intersections.

Melden Sie sich an, um zu kommentieren.


Rik
Rik am 21 Apr. 2020
Bearbeitet: Rik am 21 Apr. 2020
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

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by