필터 지우기
필터 지우기

how to fill between 2 graphs

조회 수: 2 (최근 30일)
halil hasan
halil hasan 2020년 4월 10일
댓글: Les Beckham 2020년 4월 14일
Hi eveybody
I could not fill the gap betwween 2 curves. it is shown in below figure.
can anyone help me?
thanks
The code I used is:
plot(KI1,KP1);
xlabel('K_I');
ylabel('K_P');
grid on
hold on
x2=zeros(1,150)
y=linspace(-20,40,numel(x2))
plot(x2,y,'linewidth',2)
  댓글 수: 6
darova
darova 2020년 4월 12일
I have an error here
Do you know why?
halil hasan
halil hasan 2020년 4월 13일
KI1 and KP1 are vectors. they can have any value.

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

채택된 답변

Les Beckham
Les Beckham 2020년 4월 11일
What do you mean by "fill the gap"? Do you want to connect the start and end points so that this becomes a closed curve? If so, this should do it:
plot([KI1(:); KI1(1)], [KP1(:); KP1(1)]);
xlabel('K_I');
ylabel('K_P');
grid on
  댓글 수: 7
halil hasan
halil hasan 2020년 4월 14일
Thanks alot for your kind replies, Beckham
Les Beckham
Les Beckham 2020년 4월 14일
You are welcome. Glad I could help.

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

추가 답변 (1개)

darova
darova 2020년 4월 13일
Here is my shot
y = 0:0.1:pi;
x1 = -sin(y);
x2 = y*0-0.3;
[xc,yc] = polyxpoly(x1,y,x2,y);
xx = [xc(1) x1(x1<x2) xc(end)];
yy = [yc(1) y(x1<x2) yc(end)];
plot(x1,y,x2,y)
patch(xx,yy,'r')
line(xc,yc,'marker','o')
success?
  댓글 수: 1
halil hasan
halil hasan 2020년 4월 14일
Thanks alot for your kind reply, Darova

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

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by