how to specify points outside a polygon?

3 Ansichten (letzte 30 Tage)
Leon
Leon am 8 Mai 2018
Beantwortet: Leon am 8 Mai 2018
For example, in the below code, I can specify the points inside the polygon. How about outside the polygon? How do I specify that?
IN = inpolygon(lon, lat, x0, y0);
lon = lon(IN);
lat = lat(IN);
ph1 = ph1(IN);

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Mai 2018
IN = inpolygon(lon, lat, x0, y0);
lon = lon(~IN);
lat = lat(~IN);
ph1 = ph1(~IN);

Weitere Antworten (1)

Leon
Leon am 8 Mai 2018
Many thanks for the help!

Kategorien

Mehr zu Transportation Engineering finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by