Resolving Low-Level Graphics Issues

这篇具有很好参考价值的文章主要介绍了Resolving Low-Level Graphics Issues。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Resolving Low-Level Graphics Issues

在远程操作其他工作站上的matlab的时候,无法显示仿真结果,但是在真实的工作站上操作的话又可以看到simulation的结果,并且远程的时候进行仿真,就会显示以下的错误提示:

 >>MATLAB has experienced a low-level graphics error, and may not have drawn correctly.
Read about what you can do to prevent this issue at Resolving Low-Level Graphics Issues then restart MATLAB.
To share details of this issue with MathWorks technical support,
please include this file with your service request.

查阅相应资料之后matlab普遍存在这个问题,解决办法见官网。

网上大神方法见这里。

自己实践操作,主要就两步:

1.To set your preferences so that MATLAB always starts with software OpenGL on this computer, execute this command at the MATLAB command line:

opengl('save','software')

2.Upgrade your graphics drivers to the latest versions available

这里直接就打开你的GPU然后在管理软件里点击更新就可以。

以下为引用原答者的回答:文章来源地址https://www.toymoban.com/news/detail-831340.html

You can work around many graphics issues by using the software version of OpenGL® built-into MATLAB instead of using your graphics hardware. In some cases, MATLAB automatically switches to software OpenGL, for example, if it detects known issues such as outdated drivers or graphics virtualization. Software OpenGL does not support some graphics features, such as graphics smoothing.
To determine if you are using hardware or software OpenGL, type 'opengl info'. The returned information contains the line Software: 'false' if you are using hardware OpenGL or Software: 'true' if you are using software OpenGL.
To switch from hardware to software OpenGL, start MATLAB from the command prompt or terminal on your system using this command:
`matlab -softwareopengl`
To set your preferences so that MATLAB always starts with software OpenGL on this computer, execute this command at the MATLAB command line:
`opengl('save','software')`
These commands work only on Windows® and Linux® systems. Macintosh systems do not support software OpenGL. For more information about switching between hardware and software OpenGL, see the documentation for <http://www.mathworks.com/help/matlab/ref/opengl.html opengl> and the Renderer property for figures.
For the best results with graphics, use graphics hardware that is compliant with OpenGL 2.1 or later. For more information about the graphics features that different versions of OpenGL support, see System Requirements for Graphics.
Graphics hardware vendors frequently provide updated graphics drivers that improve hardware performance. To help ensure that your graphics hardware works with MATLAB, upgrade your graphics drivers to the latest versions available.
Check your computer manufacturer website for driver updates, for example, Dell® or HP®. If no updates are provided, then check your graphics hardware vendor website, such as one of the vendors listed here. To determine your vendor, type opengl info and check the Vendor field.
- AMD
- NVIDIA
- Intel
Alternatively, you may be able to check your driver vendor and versions outside of MATLAB. On Windows systems, enter dxdiag into the Command Prompt, and look at the "Display" tab. Certain Linux distributions will allow you to use glxinfo in the Terminal to see OpenGL and driver information.
If you saved a setting to always start MATLAB with software OpenGL, then after updating your drivers, you can revert that setting by executing:
`opengl('save','hardware')`
Then restart MATLAB.
If you cannot resolve the issues using the options described here, then you might have encountered a bug in MATLAB. Please contact MathWorks Technical Support and provide the following information:
- Output of executing opengl info
- Whether your code runs without error when using software OpenGL.
- Whether your code runs without error on a different computer. Please provide the output of opengl info for all computers you have tested your code on.
- Some error messages contain a link to a file with details about the graphics error you encountered. If a link to this file is provided, please include this file with your service request.
- The full text of the error that appears. If a crash occurs, please provide the crash report generated by MATLAB.

到了这里,关于Resolving Low-Level Graphics Issues的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 在Ubuntu上安装Intel Graphics驱动程序

    Ubuntu是一种流行的Linux操作系统,它提供了广泛的硬件兼容性和易用性。如果您使用的是搭载Intel集成显卡的计算机,您可能需要安装适当的Intel Graphics驱动程序来获得最佳性能和功能。本文将详细介绍在Ubuntu上安装Intel Graphics驱动程序的步骤。 步骤1:检查Intel集成显卡型号

    2024年02月03日
    浏览(22)
  • 程序化交易(二)level2行情数据源接入

    行情在线测试 websocket行情接口 交易在线测试 在线交易接口 官方文档地址 行情交易接口用户文档 注意: 每次分配的服务器地址会发生变化,连接服务前,请务必调用该接口获取最新的服务器地址。 获取服务器: Copy 接口参数: # 参数名 类型 描述 1 market string 市场标志,沪深

    2024年02月05日
    浏览(40)
  • Qt笔记---使用Qt开发低功耗蓝牙BLE(Bluetooth low energy)程序

    在Qt项目中开发BLE通信程序,即低功耗蓝牙设备通信,关于蓝牙设备的通信分为普通蓝牙设备和低功耗蓝牙设备,此文只介绍低功耗蓝牙设备的连接通信方式。 开发环境: 系统:win10 Qt:5.15.2 MSVC:2019 注:使用此版本之前使用过其他低版本的Qt和MSVC,会出现搜索不到设备以及

    2024年04月16日
    浏览(66)
  • 使用 github api 批量创建 issues

    Github 支持通过 github api 操作创建 issues 等操作。 有一个开源库 https://github-api.kohsuke.org/ 做了封装,可以通过 Java api 方式直接调用。 每个issue发完建议sleep一两秒,太快会被限流。

    2024年02月15日
    浏览(21)
  • Tomcat Notes: Common Issues Of Tomcat

    This is a personal study notes of Apache Tomcat. Below are main reference material. - YouTube Apache Tomcat Full Tutorial,owed by Alpha Brains Courses. https://www.youtube.com/watch?v=rElJIPRw5iMt=801s This article is about common issues of Tomcat and how to solve them. The errors we talk about in here is that occur between the web app and the web containe

    2024年01月17日
    浏览(24)
  • 解决git clone 卡在Resolving deltas: 100%

    操作系统:CentOS7 git clone 一直卡在100%,如下图: 通过strace命令发现有网络超时的情况: 将hostname添加到/etc/hosts解析至本地。 服务器hostname为k8s-master 在/etc/hosts文件中增加一条记录

    2024年02月06日
    浏览(40)
  • Django报错:SystemCheckError: System check identified some issues解决办法

    今天练习django自定义标签时,一开始在APP book 中写了自定义标签 book_tags.py 测试成功,之后新建了一个APP blogs ,测试在blogs中创建模板使用自定义标签,于是直接把book/templatetags包直接赋值到blogs目录里。在页面里加载自定义标签。运行服务报错: 观察errors:大概意思是blogs和

    2024年02月10日
    浏览(25)
  • Windows开机后,Docker失败:Commoncauses include access rights issues

    这种错误看似已经跟你说很清楚了,但是看国外docker社区也提到这个问题,一大堆回答解决了别人的问题,但未必解决你的。我写自己的方案,可能也未必适合你,如果要说Root Cause根源就是windows的虚拟化功能开启的问题。 An unexpected error was encountered while executing a WSL command,

    2024年01月21日
    浏览(24)
  • Idea卡在Resolving Maven dependencies的解决方案

    在Reimpot All Maven Porjects时, 如果项目过大, maven依赖过多, 会直接卡在Resolving Maven dependencies这步 确认仓库已换源为阿里云仓库,仍然很慢,可以尝试在settings里调参 -Xms:初始堆大小 -Xmx:最大堆大小 经实测,在物理内存够用的情况下,可以提高至 -Xms2048m -Xmx4096m。 推测出现该情况

    2024年02月06日
    浏览(32)
  • 【Unity 导入项目时Resolving Packages卡住的解决方案】

    问题描述 如题。导入《Unity 3D ShaderLab 开发实战详解(第三版)》书中配套项目时,长时间卡在Resolving Packages页面不动 解决方案 参考文章:Unity骚操作:针对 Resolving Packages卡住的问题 注:本文给出的操作方法恰巧成功,仅供参考 1.打开unity hub,创建对应版本下的一个新项目

    2023年04月08日
    浏览(31)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包