Mercurial > repos > public > sbplib
view setFontSize.m @ 243:127e562bd6d3 feature/beams
Added function to calculate a solution at a given time.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 30 Aug 2016 10:44:17 +0200 |
parents | 6db427e07edd |
children |
line wrap: on
line source
% setFontSize(fig, pts) % Sets all fontsizes within a figure to size pts % The default value for pts is 16. function setFontSize(fig, pts) default_arg('pts', 16); set(findall(fig,'-property','FontSize'),'FontSize',pts); end