MATLAB: How to resize elements in GUI

guideMATLABresize

Hello community,
I've made an app in GUIDE and I've launched it on another computer, with smaller screen, some elements are out of screen. How can I resize all my elements (some lements are out of my screen and I don't see them)?
Thanks in advance
Andrew

Best Answer

To get the screen size, use
screen_size=get(0,'ScreenSize');
Related Question