The plots in live editor don't show up unless I press the open in figure window option.

조회 수: 314 (최근 30일)
Dagur
Dagur 2023년 10월 1일
답변: José 2024년 11월 13일 15:38
Hi.
I am working on a school project and everything was going fine yesterday, but this morning when I ran the live scripts the plots show up empty in the live editor. I can still see the plots, but I have to press the "open in figure window" option, which is irritating. Any suggestions?
  댓글 수: 9
Dagur
Dagur 2023년 10월 1일
This did not work but the "matlab -softwareopengl" flag did. The plots can now be seen in the matlab editor. Can you explain why this works
Akshat
Akshat 2023년 10월 2일
편집: Akshat 2023년 10월 2일
'-softwareopengl' is a startup option that is used when invoking MATLAB from the command line. It is brought into use to manage the OpenGL libraries when MATLAB detects a graphics driver with known issues. Leveraging this option forces MATLAB to start with software OpenGL libraries.
As the issues is resolved, I would be summarising and moving the discussion to an answer for future reference.

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

답변 (2개)

Akshat
Akshat 2023년 10월 2일
편집: Akshat 2023년 10월 2일
Hi @Dagur,
I understand that you are facing issues with plots in the live editor. In reference to the code shared, the issue could not be reproduced on MATLAB R2023a and MATLAB R2021a. On subsequent discussions in the comments, it was found that, a Graphic Timeout Error warning was being thrown which was resolved through invoking MATLAB from the command line using the '-softwareopengl' flag which forces MATLAB to start with software OpenGL libraries.
>> matlab -softwareopengl
Have a look at the MATLAB Answer attached below for more information:
I hope this helps.

José
José 2024년 11월 13일 15:38
Working on MAC with apple-silicon, using R2024b.
Had the same problem.
The solution for me is to use a new figure for each new plot.
figure
plot(...)
figure
plot(...)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by