Empty MATLAB plots appearing and unable to rmeove them.
2 次查看(过去 30 天)
显示 更早的评论
Hi, I've been using MATLAB for a project and generated some figures, slept my laptop and then went to lectures the next day. When I opened my laptop I was met with these two figures. I've restarted my computer, used task manager to force quit, and use all variations of close all and close all force. The windows are still there. I cant interact with them, move them, or in any way effect them. They always appear in front of other windows.
They are also present on the lock screen. ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1813338/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1813338/image.png)
1 个评论
Sumukh
2024-11-25
编辑:Sumukh
2024-11-25
You can try deleting all figures unconditionally by using these statements:
set(groot,'ShowHiddenHandles','on')
c = get(groot,'Children');
delete(c)
If the issue still persists, you can try performing a clean install of MATLAB or kindly reach out to MathWorks Support for better resolving this issue:
回答(1 个)
Image Analyst
2024-11-25
Sounds like some kind of Windows sleep quirk. They won't remain after rebooting the computer. I don't know what went wrong in the first place but rebooting will fix it. It's not like that data is permanently burned into your display RAM memory. Rebooting will clear it.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!