Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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

Akzeptierte Antwort

KSSV
KSSV am 9 Mai 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 Kommentare

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Object Programming 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