Does MATLAB support High DPI screens on Linux?

조회 수: 435 (최근 30일)
MathWorks Support Team
MathWorks Support Team 2018년 6월 22일
댓글: Andrew King 2021년 1월 22일
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
MathWorks Support Team 2018년 6월 22일
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