Mercurial > repos > public > sbplib
view setFontSize.m @ 1198:2924b3a9b921 feature/d2_compatible
Add OpSet for fully compatible D2Variable, created from regular D2Variable by replacing d1 by first row of D1. Formal reduction by one order of accuracy at the boundary point.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Fri, 16 Aug 2019 14:30:28 -0700 |
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