Finding if a line intersects another.
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have the simultaneous solution of line 1 and line 2 for instance. This is a point where hey intersect. Say line one was between (1,2) to (2,3) how would i determine using if else end structure if this point lied along the line. NOTE It must not land on these end points (1,2) and (2,3).
1 Kommentar
Star Strider
am 26 Mär. 2014
How does this differ from your other quesiton: http://www.mathworks.com/matlabcentral/answers/123251-solving-linear-equations-simultaneoulsy?
Antworten (1)
Image Analyst
am 26 Mär. 2014
Basic algebra. You have the equations of 2 lines. They intersect at the same y value. So y1=m1*x+b1 = y2=m2*x+b2. So (m1-m2)*x = (b2-b1) and x = (b2-b1)/(m1-m2). Then you can check if that x is between 1 and 2 by plugging in the slope parameters m, and the intercept parameters b.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Calculus 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!