Lines in legend are missing

조회 수: 25 (최근 30일)
Romy Schipper
Romy Schipper 2019년 11월 12일
댓글: Star Strider 2019년 11월 12일
I have made a simple plot using the following code:
figure(1)
plot(CO2(3:end,1),CO2(3:end,2) - mean(CO2(3:end,2)))
hold on
plot(CO2(3:end,1), diff_CO2(2:end))
hold on
plot(CO2(3:end,1), diff(diff_CO2))
title('Global carbon dioxide emissions')
xlabel('Time in years')
ylabel('CO2 in parts per minute')
legend({'Demeaned series', '1st difference', '2nd difference'}, 'Location','northwest')
Everything is as it;s supposed to be, appart from the fact that the lines are missing in the legend. I have reinstalled the student version of 2019b so maybe it has to do with that. But anyone tips how to solve this?
Output:

채택된 답변

Star Strider
Star Strider 2019년 11월 12일
This appears to be a problem with current AMD graphics card drivers.
The easiest solution seems to be:
opengl('software')
and then:
opengl('save','software')
See the documentation on opengl for a detailed discussion.
I intend to mention this to AMD, however if you also want to, please do!
  댓글 수: 2
Romy Schipper
Romy Schipper 2019년 11월 12일
Thanks! Solved immediately! :)
Star Strider
Star Strider 2019년 11월 12일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by