-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmc2startup.m
More file actions
executable file
·71 lines (57 loc) · 1.91 KB
/
mc2startup.m
File metadata and controls
executable file
·71 lines (57 loc) · 1.91 KB
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
66
67
68
69
70
71
% This file is a part of the MC2 toolbox developed by Y. Mohammand and T. Nishida.
%Please do not remove this comment
%
% Using this file is governed by the license of MC2 which you can find in LICENSE.md
%
% You can find more information about this toolbox here:
% - Yasser Mohammad and Toyoaki Nishida, "MC2: An Integrated Toolbox for Change, Causality,
% and Motif Discovery", 29th International Conference on Industrial, Engineering &
% Other Applications of Applied Intelligent Systems (IEA/AIE) 2016, pp. 128 -- 141.
% - Yasser Mohammad and Toyoaki Nishida, "Data Mining for Social Robotics", Springer 2016.
%
disp('MC^2 Startup: (c) Yasesr Mohammad 2009-2019 http://www.ii.ist.i.kyoto-u.ac.jp/~yasser')
mc2path = fileparts( mfilename('fullpath') );
mainpath = fullfile(mc2path, 'algorithms');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'learning');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'preprocessing');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'preprocessing/transform');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'helpers');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'demos');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'generators');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'distances');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
mainpath = fullfile(mc2path, 'eval');
if exist(mainpath,'dir')
addpath(genpath(mainpath));
end
% mainpath = fullfile(mc2path, 'test');
% if exist(mainpath,'dir')
% addpath(mainpath);
% end
global MC2BINPATH;
MC2BINPATH=fullfile(mc2path, 'bin');
clear mainpath mc2path
disp('MC^2 Startup Completed.')