MATLAB: Is it not possible to change every font size on plots at the same time

fontplotsetsize;

Is it not possible to change every font size on plots at the same time with only one command? (tics, legends, titles, axes, etc.)

Best Answer

From the file exchange, supersizeme(h, 1.5) increases the font size of all text in figure h (or axes h) by a factor of 1.5.
The function searches for all objects that have a fontsize property and scales the fontsizes. This preserves the relative difference in fontsizes between objects. It works with TeX interpreter text as well.
The images below are before and after increasing all fonts by x1.5 using supersizeme(1.5)