blob: 42fa855673a9d02207a6d30af2b70ec9e2e5fff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function niceplotset(fhandle)
%% Increases default font
fontSize=24;
%% increase width of the lines
%lineWidth=2;
% sets axes font
set(gca,'FontSize',fontSize );
%set(gca,'FontSize',fontSize, 'LineWidth', lineWidth);
%box(axes1,'on');
%hold(axes1,'off');
% Create xlabel
%xlabel('','FontSize',fontSize);
%ylabel('','FontSize',fontSize);
%title('', 'FontSize',fontSize);
end
|