check points inside triangle or on edge with example
Ältere Kommentare anzeigen
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 Kommentare
John D'Errico
am 8 Apr. 2016
Bearbeitet: John D'Errico
am 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
am 8 Apr. 2016
Bearbeitet: Walter Roberson
am 9 Apr. 2016
John D'Errico
am 8 Apr. 2016
Bearbeitet: John D'Errico
am 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
am 8 Apr. 2016
Bearbeitet: Roger Stafford
am 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
am 9 Apr. 2016
Roger Stafford
am 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
am 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
Akzeptierte Antwort
Weitere Antworten (1)
Gary Bikini
am 12 Jun. 2021
You can use the built-in function
[in,on]=inpolygon(xq,yq,xv,yv)
Kategorien
Mehr zu Linear Algebra finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!