Fill between two lines not working

조회 수: 14 (최근 30일)
Saugat Shrestha
Saugat Shrestha 2020년 4월 9일
댓글: Saugat Shrestha 2020년 4월 11일
I am trying to fill the between the lines but its is only plotting the limiting lines. I cant seem to understand the problem.
Hope you can help. Thanks in advance.
figure(2)
semilogx((f_Along)*(0.1/WS),f_Along.*((PSD_AL_M))/WSP^2,'Color',...
'k','LineWidth',2)
hold on
semilogx((f_Along)*(0.1/WS),f_Along.*((SD_AL_P))/WSP^2,'Color',...
[0.7 0.7 0.7],'LineWidth',2,'DisplayName','STD+')
hold on
semilogx((f_Along)*(0.1/WS),f_Along.*((SD_AL_N))/WSP^2,'Color',...
[0.7 0.7 0.7],'LineWidth',2,'DisplayName','STD-')
hold on
x2 = [(f_Along')*(0.1/WS), fliplr((f_Along')*(0.1/WS))];
inBetween = [f_Along'.*((SD_AL_P'))/WSP^2, fliplr(f_Along'.*((SD_AL_N'))/WSP^2)]
fill(x2, inBetween, 'k');
hold on
  댓글 수: 3
Walter Roberson
Walter Roberson 2020년 4월 10일
It would be easier if we had your data so we could test on our own system to avoid accidentally giving you a solution that does not work for your situation.
Saugat Shrestha
Saugat Shrestha 2020년 4월 10일
I have attached the variables.
Thanks in advance.

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

답변 (1개)

Star Strider
Star Strider 2020년 4월 9일
Plot everything (including the patch calls) using linear axis rulers first, then convert the scale to logarithmic.
.
  댓글 수: 8
Star Strider
Star Strider 2020년 4월 10일
@Saugat Shrestha — It would have helped to have had your data at the outset. As Walter points out, the problem is that ‘f_Along’ begins with 0. Since log(0) appraches -Inf, the transformation fails for patch.
Add before you create ‘figure(2)’:
f_Along = f_Along + eps;
and after the patch (or fill) call:
xlim([f_Along(2) f_Along(end)])
set(gca, 'XScale','log')
@Walter — Thank you.
.
Saugat Shrestha
Saugat Shrestha 2020년 4월 11일
@Walter Roberson, I did as you instructed and it worked.
Thank You so much.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by