https://github.com/Data2Dynamics/d2d
Raw File
Tip revision: d72d4c223fb8adc0e3e44a1d3d1eafce18b995ae authored by Andreas Raue on 06 March 2015, 00:17:07 UTC
Increase C version code, after Joep's submits today to prevent compatibility problems
Tip revision: d72d4c2
arSubplotStyle.m
function arSubplotStyle(g, labelfontsize, labelfonttype)

if(~exist('labelfontsize','var'))
    labelfontsize = 12;
end
if(~exist('labelfonttype','var'))
    labelfonttype = 'Arial';
end

set(g, 'FontSize', labelfontsize);
set(g, 'FontName', labelfonttype);
set(g, 'TickDir', 'out');
back to top