check points inside triangle or on edge with example
이전 댓글 표시
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
John D'Errico
2016년 4월 8일
편집: John D'Errico
2016년 4월 8일
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
2016년 4월 8일
편집: Walter Roberson
2016년 4월 9일
John D'Errico
2016년 4월 8일
편집: John D'Errico
2016년 4월 8일
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
2016년 4월 8일
편집: Roger Stafford
2016년 4월 8일
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
2016년 4월 9일
Roger Stafford
2016년 4월 9일
I've given the necessary expression as an "Answer" here. It doesn't seem like a very slow method to me.
Walter Roberson
2016년 4월 9일
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
채택된 답변
추가 답변 (1개)
Gary Bikini
2021년 6월 12일
You can use the built-in function
[in,on]=inpolygon(xq,yq,xv,yv)
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!