check points inside triangle or on edge with example
Mostra commenti meno recenti
Good evening everyone
function or coding for finding point is inside triangle or sub triangle or its on edges
thanks for involving your knowledge to be share to answer question
7 Commenti
John D'Errico
il 8 Apr 2016
Modificato: John D'Errico
il 8 Apr 2016
help inpolygon
If this is homework (as I expect from your statement) then why not make an effort? We are not here to provide detailed code for your every homework problem.
Redwan Dan
il 8 Apr 2016
Modificato: Walter Roberson
il 9 Apr 2016
John D'Errico
il 8 Apr 2016
Modificato: John D'Errico
il 8 Apr 2016
You don't actually say what it is that you expect to happen. Anyway, your code does not run at all, since it is missing the values of p, q, xmax, and ylow to start with. Possibly others, but I've not bothered to look past the first few lines. We cannot decipher uncommented code that will not even execute.
So why did inpolygon NOT suffice? Your question is apparently about a triangle, given the title, yet it is not at all obvious from the code what you are doing. If you want an answer, you need to provide some explanation.
Roger Stafford
il 8 Apr 2016
Modificato: Roger Stafford
il 8 Apr 2016
Even if 'inpolygon' is not used for some reason, checking that a point lies inside a triangle is very easily done. It requires three inequalities to be satisfied. Each one checks that a corresponding vertex lies on the same side of the line of the other two vertices as the given point. This is a comparison between two linear expressions. The point lies inside the triangle if and only if all three are true.
Redwan Dan
il 9 Apr 2016
Roger Stafford
il 9 Apr 2016
I've given the necessary expression as an "Answer" here. It doesn't seem like a very slow method to me.
Walter Roberson
il 9 Apr 2016
Redwan Dan comments to John D'Errico:
am not here to prove you any thing and the way your answer and close is not nice treat with me if you don't know just don't comment or close
Risposta accettata
Più risposte (1)
Gary Bikini
il 12 Giu 2021
You can use the built-in function
[in,on]=inpolygon(xq,yq,xv,yv)
Categorie
Scopri di più su Linear Algebra in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!