Delete parts of plotted figures?

조회 수: 15 (최근 30일)
ErikJon Pérez Mardaras
ErikJon Pérez Mardaras 2020년 10월 23일
댓글: Star Strider 2020년 10월 28일
I have made this image
with this code:
axis equal
hold on
caca=2*pi();
ang=linspace(0,caca);
xp=5*cos(ang);
yp=5*sin(ang);
circ=[xp;yp];
plot(xp,yp,'r');
L1=[-8 8; 3 3];
plot(L1(1,:),L1(2,:),'b')
And I want to delete the part of the line within the circle and the part of the circle under the line so the image results like this:
Is there any way of achieving that? How can I do it?

채택된 답변

Star Strider
Star Strider 2020년 10월 23일
Try this:
axis equal
hold on
caca=2*pi();
ang=linspace(0,caca);
xp=5*cos(ang);
yp=5*sin(ang);
circ=[xp;yp];
L1x = linspace(-8, 8);
L1y = 3*ones(size(L1x));
L1=[L1x; L1y]; % Re-define Line
incirc = inpolygon(L1x,L1y,circ(1,:),circ(2,:));
L1(1,incirc) = NaN;
L1(2,incirc) = NaN;
plot(xp(yp>=3),yp(yp>=3),'r');
plot(L1(1,:),L1(2,:),'b')
.
  댓글 수: 4
ErikJon Pérez Mardaras
ErikJon Pérez Mardaras 2020년 10월 28일
thanks!
Star Strider
Star Strider 2020년 10월 28일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2020년 10월 23일
use patch() or fill()? This one does part of it.
patch(xp,yp,'white')
  댓글 수: 1
ErikJon Pérez Mardaras
ErikJon Pérez Mardaras 2020년 10월 25일
I have tried that and appears and strange figure with black borders

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by