Post

Matlab

Ubuntu下Matlab相关配置笔记

opengl问题

在正常安装完Matlab后,运行时会出现如下的报错
Alt text
该问题出现在双显卡笔记本上,需要将显卡设置为独显

在安装完nvidia显卡驱动后,显卡默认为混合模式,需要将其切换为独显模式。 在终端输入

1
sudo prime-select nvidia

提示Done的时候即代表切换完成,重启后即是独显模式。 切换到集显模式

1
sudo prime-select intel

切换到混合模式

1
sudo prime-select on-demand

高分屏下字体过小

在matlab命令行使用如下命令

1
2
3
s = settings;
s.matlab.desktop.DisplayScaleFactor;
s.matlab.desktop.DisplayScaleFactor.PersonalValue = 2.0;

其中2.0是放大的尺度

This post is licensed under CC BY 4.0 by the author.