-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.m
65 lines (52 loc) · 1.58 KB
/
startup.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
set(0,'DefaultFigureWindowStyle','docked')
format compact
format short e
addpath([pwd '/bernoulli']);
addpath([pwd '/data']);
%% Early environment and feature definitions
addpath([pwd '/environment']);
addpath([pwd '/features']);
%% Utility code
% Visualization, data creation scripts, etc.
addpath([pwd '/utils']);
addpath([pwd '/utils/sampling']);
addpath([pwd '/utils/environment']);
addpath([pwd '/utils/tightfig']);
addpath([pwd '/utils/make_fig']);
%% Draw different things
addpath([pwd '/draw']);
%% Contains MCTS-related tools
addpath([pwd '/mcts']);
addpath([pwd '/mcts/metrics']);
addpath([pwd '/mcts/mcts_utils']);
addpath([pwd '/mcts/pw']);
addpath([pwd '/mcts/simulation']);
addpath([pwd '/mcts/configs']);
addpath([pwd '/mcts/optimization']);
%% Motion and Trajectory Optimization
addpath([pwd '/motion']);
addpath([pwd '/motion/samplers']);
addpath([pwd '/motion/helpers']);
addpath([pwd '/motion/goal']);
addpath([pwd '/motion/naive']);
addpath([pwd '/motion/tree']);
%% GMM/GMR Specific Tools
addpath([pwd '/gmmgmr']);
addpath([pwd '/tests']);
addpath([pwd '/tests/dev']);
addpath([pwd '/tests/conference']);
%% Neural Net
addpath([pwd '/neural_net']);
addpath([pwd '/tests/nn']);
%% Task Modeling and Specification
addpath([pwd '/segmentation']);
addpath([pwd '/task']);
%% External Dependencies
addpath([pwd '/EXTERNAL']);
addpath([pwd '/EXTERNAL/dynamic_time_warping_v2.1']);
addpath([pwd './EXTERNAL/GMM-GMR-v2.0']);
addpath([pwd '/EXTERNAL/barwitherr']);
addpath([pwd '/EXTERNAL/subaxis']);
addpath([pwd '/EXTERNAL/gpml-matlab-v4.0-2016-10-19/']);
% Call GPML Startup Code
gpml_startup;