how to use inpolygon function

9 ビュー (過去 30 日間)
Sososasa
Sososasa 2014 年 3 月 30 日
コメント済み: Sososasa 2014 年 3 月 30 日
Hi,
I have two polygons with different number of vertices:
polygon1= [0.1624 -0.6477;
0.2247 -0.6477;
0.2247 0.3874;
0.1624 0.5219]
polygon2= [0.1624 0.5219;
0.2247 0.3874;
0.2247 0.5651]
Where the first column is X-coordinates and the second column in Y-coordinates. I want to know if a any random point is in the first or second polygon. How can I do that? I read the documentation of this function (inpolygon) but I don't understand it well.

採用された回答

Jos (10584)
Jos (10584) 2014 年 3 月 30 日
A polygon is defined by its vertices(corner points), being pairs of (x,y) coordinates. In your case, these coordinates are stored in a single N-by-2 matrix.
polygon1= [0.1624 -0.6477;
0.2247 -0.6477;
0.2247 0.3874;
0.1624 0.5219]
P = rand(1,2)/2 % we will look at 1 point, but in poly can accept multiple points!
tf = inpolygon(P(:,1), P(:,2),polygon1(:,1), polygon1(:,2))
plot(polygon1([1:end 1],1), polygon1([1:end 1],2),'b.-',P(:,1), P(:,2),'r*') % a plot is often informative
if any(tf==1),
title('Some point(s) is (are) in or on the edge of polygon 1') ;
else
title('All points are outside polygon 1') ;
end
I hope this helps.
  1 件のコメント
Sososasa
Sososasa 2014 年 3 月 30 日
Thank you a lot that really help :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by