how to get outline of multiple shapes
    17 views (last 30 days)
  
       Show older comments
    
    Asliddin Komilov
 on 18 Dec 2023
  
    
    
    
    
    Answered: Asliddin Komilov
 on 4 Jan 2024
            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 Comments
  Image Analyst
      
      
 on 18 Dec 2023
				Do you require them to be shape objects or can the answer be a digital image?
Accepted Answer
More Answers (1)
  Sulaymon Eshkabilov
      
 on 19 Dec 2023
        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 Comments
See Also
Categories
				Find more on Fit Postprocessing in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


