Does MATLAB support High DPI screens on Linux?

420 次查看(过去 30 天)
I am running MATLAB on Linux on a high resolution 4K display. The menus, menu bar, etc are very small and the characters are difficult to read because of their small size. I have already changed the font size in the editor and command window, but I cannot find any way of changing the MATLAB program menu bar size.

采纳的回答

MathWorks Support Team
MATLAB supports High DPI screens on Linux starting from R2017b.
Tuning a high-DPI Linux system requires two steps:
1. Setting the MATLAB scale factor
2. Calibrating the system's DPI
The MATLAB scale factor affects MATLAB desktop and the size/position of windows.
The system DPI determines the scale and font size of axes and labels.
The two tuning steps are described below:
1. To set the MATLAB scale factor, please execute the following commands in the MATLAB Command Window:
>> s = settings;s.matlab.desktop.DisplayScaleFactor
>> s.matlab.desktop.DisplayScaleFactor.PersonalValue = 1.5
Here the scale factor has been set to 1.5.
2. To calibrate the system's DPI to match the scale factor, please use the following terminal commands:
% xdpyinfo | grep resolution
resolution: 96x96 dots per inch
% xrandr --dpi 144
The DPI value chosen should be the resolution found with "xdpyinfo" multiplied by the MATLAB scale factor that was set. In the example, 96 × 1.5 = 144.
MATLAB must be restarted after Step 2.
Note:
In earlier releases than R2017b, high DPI screens on Linux is not supported.
The possible workarounds mentioned below may help improve the visual appearance:
(a) You can increase font sizes of text in the different windows. However, the icon or font size of the toolbar cannot be changed.
(b) You can switch the high DPI monitor to a lower screen resolution, for example 1920x1080 or as preferred.
(c) You can connect a lower resolution monitor and use MATLAB on that monitor.
  3 个评论
DNF
DNF 2020-8-3
What is the effect of the xrandr command? Will it affect other things than Matlab itself? It doesn't seem Matlab-specific, so as a new linux user I'm a bit cautious about it.
Andrew King
Andrew King 2021-1-22
Solution 1 fixed most things. But scrollbars, as well as icons in "save as..." dialog, etc. are still tiny.
Weirdly, in the code tip box, the text is tiny, the "details" button is normal, and the "fix" button is tiny.
Any ideas on completing the fix would be appreciated. Using 2020b on Ubuntu 20.04.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

产品


版本

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by