how to specify points outside a polygon?
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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);
0 commentaires
Réponse acceptée
  Walter Roberson
      
      
 le 8 Mai 2018
        IN = inpolygon(lon, lat, x0, y0);
lon  = lon(~IN);
lat  = lat(~IN);
ph1  = ph1(~IN);
0 commentaires
Plus de réponses (1)
Voir également
Catégories
				En savoir plus sur Transportation Engineering dans Help Center et File Exchange
			
	Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

