how to get outline of multiple shapes
9 ビュー (過去 30 日間)
古いコメントを表示
Asliddin Komilov
2023 年 12 月 18 日
回答済み: Asliddin Komilov
2024 年 1 月 4 日
Hi,
I have asked about it before
but the answer did not fit all my data, so I need help on this one too.
I have multiple shapes I need to merge into a single shape, because I have sets of shapes those I have to merge and compare with each other (put into a one plot). the set of data is attached and I can plot it like this:
plot(X(:, [1:end 1])', Y(:, [1:end 1])')
let me know, if you know how to do it, thanks.
2 件のコメント
Image Analyst
2023 年 12 月 18 日
Do you require them to be shape objects or can the answer be a digital image?
採用された回答
その他の回答 (1 件)
Sulaymon Eshkabilov
2023 年 12 月 19 日
Maybe you want to get something like this shape, e.g.:
load('Data.mat')
for ii=1:height(X)
PGON = polyshape(X(ii,:),Y(ii,:),'Simplify',true);
plot(PGON)
hold on
end
xlim([-3 3])
ylim([0, 0.2])
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!