-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEVCPlotSettings.m
36 lines (35 loc) · 940 Bytes
/
EVCPlotSettings.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
% plot settings
export = 0;
fontSize.title = 16;
fontSize.xlabel = 14;
fontSize.ylabel = 14;
fontSize.TickLabel = 12;
fontWeight.title = 'bold';
fontWeight.ylabel = 'normal';
fontWeight.xlabel = 'normal';
fontWeight.TickLabel = 'normal';
color.default = [0 0 0];
color.line1 = [0 0 0]/256; % [31 103 172]/256;
color.line2 = [0 0 0]/256; % [31 103 172]/256;
color.line3 = [253 120 20]/256; % [253 120 20]/256;
color.line4 = [253 120 20]/256; % [253 120 20]/256;
color.line5 = [129 189 74]/256;
color.line6 = [129 189 74]/256;
color.bar0 = [1 1 1];
color.bar1 = [0.7 0.7 0.7];
color.bar2 = [0.5 0.5 0.5];
color.bar3 = [0.3 0.3 0.3];
color.bar4 = [173,216,230]/255; % light blue
lineWidth.line1 = 3;
lineWidth.line2 = 3;
lineWidth.line3 = 3;
lineWidth.line4 = 3;
style.line1 = '-';
style.line2 = '--';
style.line3 = '-';
style.line4 = '--';
style.marker1 = 's';
style.marker2 = 's';
style.marker3 = 'd';
style.marker4 = 'd';
markerSize = 10;