check points inside triangle or on edge with example
Show older comments
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 Comments
John D'Errico
on 8 Apr 2016
Edited: John D'Errico
on 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
on 8 Apr 2016
Edited: Walter Roberson
on 9 Apr 2016
John D'Errico
on 8 Apr 2016
Edited: John D'Errico
on 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
on 8 Apr 2016
Edited: Roger Stafford
on 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
on 9 Apr 2016
Roger Stafford
on 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
on 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
Accepted Answer
More Answers (1)
Gary Bikini
on 12 Jun 2021
You can use the built-in function
[in,on]=inpolygon(xq,yq,xv,yv)
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!