Borrar filtros
Borrar filtros

How to make united polygons from separated polygons?

8 visualizaciones (últimos 30 días)
Smithy
Smithy el 5 de Feb. de 2021
Respondida: KSSV el 5 de Feb. de 2021
I have 3 separated polygons of each variables (Polygon#1, Polygon#2,Polygon#3).
I would like to make one united polygon from 3 separated polygons as the picture.
I tried with union funtion of matlab, but it works only for contacted Polygon.
Please give me some helps or hints...

Respuesta aceptada

KSSV
KSSV el 5 de Feb. de 2021
Let P1,P2,P3 be your three polygons data which I am assuming as column dominant.
P = [P1; P2; P3] ; % merge the data
idx = boundary(P(:,1),P(:,2)) ;
P = P(idx,:) ;
plot(P(:,1),P(:,2))
The above shall work if not share the data.

Más respuestas (0)

Categorías

Más información sobre Elementary Polygons en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by