Does MATLAB support High DPI screens on Linux?

433 views (last 30 days)
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.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 22 Jun 2018
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 Comments
DNF
DNF on 3 Aug 2020
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 on 22 Jan 2021
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.

Sign in to comment.

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!