Filter löschen
Filter löschen

How to make united polygons from separated polygons?

8 Ansichten (letzte 30 Tage)
Smithy
Smithy am 5 Feb. 2021
Beantwortet: KSSV am 5 Feb. 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...

Akzeptierte Antwort

KSSV
KSSV am 5 Feb. 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.

Weitere Antworten (0)

Kategorien

Mehr zu Elementary Polygons finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by