-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetPlotDefaults.m
executable file
·52 lines (51 loc) · 1.92 KB
/
setPlotDefaults.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
fig_prop.figSize = 750;
scrsz = get(0,'ScreenSize');
set(0,'DefaultFigureColor', 'White', ...
'DefaultFigurePaperType', 'a4letter', ...
'DefaultAxesColor', 'white', ...
'DefaultAxesDrawmode', 'fast', ...
'DefaultAxesFontUnits', 'points', ...
'DefaultAxesFontSize', 20, ...
'DefaultAxesFontAngle', 'Normal', ... % 'Italic'
'DefaultAxesFontName', 'Times', ...
'DefaultAxesGridLineStyle', ':', ...
'DefaultAxesInterruptible', 'on', ...
'DefaultAxesLayer', 'Bottom', ...
'DefaultAxesNextPlot', 'replace', ...
'DefaultAxesUnits', 'normalized', ...
'DefaultAxesXcolor', [0, 0, 0], ...
'DefaultAxesYcolor', [0, 0, 0], ...
'DefaultAxesZcolor', [0, 0, 0], ...
'DefaultAxesVisible', 'on', ...
'DefaultLineColor', 'Red', ...
'DefaultLineLineStyle', '-', ...
'DefaultLineLineWidth', 3, ...
'DefaultLineMarker', 'none', ...
'DefaultLineMarkerSize', 12, ...
'DefaultTextColor', [0, 0, 0], ...
'DefaultTextFontUnits', 'Points', ...
'DefaultTextFontSize', 18, ...
'DefaultTextFontName', 'Times', ...
'DefaultTextVerticalAlignment', 'middle', ...
'DefaultTextHorizontalAlignment', 'left', ...
'DefaultFigurePosition', [scrsz(3)*.1 scrsz(4)*.1 scrsz(3)*.1+fig_prop.figSize scrsz(4)*.1+fig_prop.figSize]);
fig_prop.plotColors = ['k' 'r' 'g' 'b' 'c' 'm' 'y' 'k' 'r' 'g' 'b' 'c' 'm' 'y' 'k' 'r' 'g' 'b' 'c' 'm' 'y'];
fig_prop.plotLinType{1} = '-';
fig_prop.plotLinType{end+1} = '--';
fig_prop.plotLinType{end+1} = '-.';
fig_prop.plotLinType{end+1} = '-';
fig_prop.plotLinType{end+1} = '--';
fig_prop.plotLinType{end+1} = '-.';
fig_prop.plotLinType{end+1} = '-';
fig_prop.plotLinType{end+1} = '--';
fig_prop.plotLinType{end+1} = '-.';
fig_prop.plotLinType{end+1} = '-';
fig_prop.plotLinType{end+1} = '--';
fig_prop.plotLinType{end+1} = '-.';
fig_prop.plotLinType{end+1} = '-';
fig_prop.plotLinType{end+1} = '--';
fig_prop.plotLinType{end+1} = '-.';
fig_prop.plotLinType{end+1} = '-';
fig_prop.plotLinType{end+1} = '--';
fig_prop.plotLinType{end+1} = '-.';
fig_prop.plotLinType{end+1} = '-';