"Matlab has disabled some advanced graphic rendering features"
65 次查看(过去 30 天)
显示 更早的评论
I got the following. What is the next step?
t = tiledlayout(1,1,'Padding','none');
Warning: MATLAB has disabled some advanced graphics rendering features by switching to software OpenGL. For more information, click here.
1 个评论
Jan
2020-8-5
"For more information, click here." implies, that Matlab want you to click the shown link. What does happen then?
回答(1 个)
Gouri Chennuru
2020-8-11
编辑:Gouri Chennuru
2020-8-13
Hi,
As a workaround you can execute,
opengl hardware
This command renders subsequent graphics. If your graphics hardware does not support hardware-accelerated OpenGL, then MATLAB uses a software version instead.
To save it for future instances of MATLAB execute the following,
opengl('save','hardware');
This command sets your preferences so that MATLAB uses software OpenGL to render graphics in all future sessions. This command does not affect the current session so restart the MATLAB and it will resolve the issue.
Hope this Helps!
7 个评论
Thuong
2023-12-11
I am facing exactly the same problem, I am running matlab --nodesktop on a remote server. Please let me know if you have been solved this problem. Thanks.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!