-
Notifications
You must be signed in to change notification settings - Fork 1
/
startup_opensky.m
26 lines (24 loc) · 1.05 KB
/
startup_opensky.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
% Copyright 2018 - 2024, MIT Lincoln Laboratory
% SPDX-License-Identifier: BSD-2-Clause
% Path
% Add utilities, such as msl2agl
addpath(genpath([getenv('AEM_DIR_CORE') filesep 'matlab']));
addpath(genpath('dividepolygon'));
% Plotting defaults
% https://www.mathworks.com/help/matlab/creating_plots/default-property-values.html
myColorOrder = [0 114 178; ... % Blue
230 159 0; ... % Orange
204 121 167; ... % Reddish purple
86 180 233; ... % Sky Blue
0 158 155; ... % Bluish green
213 94 0; .... % Vermillion
240 228 66 ... % Yellow
] / 255;
set(groot, 'defaultFigureColor', 'white'); % Figure defaults
set(groot, 'defaultAxesColorOrder', myColorOrder, ...
'defaultAxesFontsize', 12, ...
'defaultAxesFontweight', 'bold', ...
'defaultAxesFontName', 'Arial'); % Axes defaults
set(0, 'DefaultAxesColorOrder', myColorOrder);
set(groot, 'defaultLineLineWidth', 1.5); % Line defaults
set(groot, 'defaultStairLineWidth', 1.5); % Stair defaults (used in ecdf)