how to remove some portion of boundary of an object without affecting remaining portion in matlab by programming

1 view (last 30 days)
i have one query. i made a 2-d figure 'c.png' in matlab by using r and theta and with the help of boundary function..now i want to make a figure 'p.png' from previous figure..i made it manually but i want to make it automatically by programming ..i attached figures in png format due to size is very large in fig format..please help me

Accepted Answer

KSSV
KSSV on 9 May 2019
load f1.mat ;
load f2.mat ;
x = f1 ; y = f2 ;
figure
hold on
plot(x,y,'*r')
idx = x>35.5 ;
x(idx) = [] ;
y(idx) = [] ;
plot(x,y,'Og')
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Programming 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!