-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPATHS.m
63 lines (48 loc) · 1.81 KB
/
PATHS.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
classdef PATHS
%PATHS Summary of this class goes here
% Detailed explanation goes here
properties
end
methods (Static)
function [ PATH ] = exp()
% PATH constant to where all experimental data is stored for the
% MPC journal paper.
if ispc
PATH = 'Z:\mpc-journal';
else
PATH = '/media/labserver/mpc-journal';
end
end
function PATH = sim_data()
% Path to simulation data folder.
PATH = fullfile(PATHS.MPCJ_root(), 'data');
end
function [ PATH ] = MPCJ_root()
% PATH constant to where all experimental data is stored for the
% MPC journal paper.
PATH = fullfile(getMatPath, 'afm_mpc_journal');
end
function [ PATH ] = labview()
% PATH constant to where all experimental data is stored for the
% MPC journal paper.
PATH = fullfile(PATHS.MPCJ_root, 'labview');
end
function [ PATH ] = sim_models()
% PATH constant to where all experimental data is stored for the
% MPC journal paper.
PATH = fullfile(PATHS.MPCJ_root, 'models');
end
function [ PATH ] = step_exp()
%PATH_EXP Summary of this function goes here
% Detailed explanation goes here
PATH = fullfile(PATHS.exp, 'step-exps');
end
function [ PATH ] = sysid()
% PATH constant to where the system ID data is stored
PATH = fullfile(PATHS.exp, 'sysID');
end
function PATH = jfig()
PATH = fullfile(PATHS.MPCJ_root, 'latex', 'figures');
end
end
end