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

1 次查看(过去 30 天)
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

采纳的回答

KSSV
KSSV 2019-5-9
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by