The plots in live editor don't show up unless I press the open in figure window option.
313 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
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
2023 年 10 月 2 日
編集済み: Akshat
2023 年 10 月 2 日
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.
0 件のコメント
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(...)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!