필터 지우기
필터 지우기

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