MATLAB: Do not the figure windows fit the screen in MATLAB 7.7 (R2008b) after upgrading iMac system

imacmacMATLABresizeupgrade

I am having issues in fitting the figure window in my screen in MATLAB 7.7 (R2008b) after upgrading iMac system.

Best Answer

To resolve this issue you can set the "Resize" feature of the figure to off by using the following command
scrsze = get(0,'ScreenSize')
figure('Units','pixels','Position',scrsze,'Resize','off');