-
Notifications
You must be signed in to change notification settings - Fork 1
/
projpath.m
49 lines (38 loc) · 1.24 KB
/
projpath.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
function p = projpath()
% PROJPATH returns the path definiton for this project
%
% Outputs:
%
% P Cell array of paths to automatically load
%% File information
% Author: Philipp Tempel <philipp.tempel@isw.uni-stuttgart.de>
% Date: 2019-02-28
% Changelog:
% 2019-02-28
% * Remove directory 'dae' which is not yet to be available
% 2018-04-29
% * Initial release
%% Do your code magic here
chPath = fileparts(mfilename('fullpath'));
p = { ...
fullfile(chPath) ...
fullfile(chPath, 'data') ...
fullfile(chPath, 'experiments') ...
fullfile(chPath, 'file') ...
fullfile(chPath, 'func') ...
fullfile(chPath, 'mat') ...
fullfile(chPath, 'math') ...
fullfile(chPath, 'ode') ...
fullfile(chPath, 'optim') ...
genpath(fullfile(chPath, 'plot')) ...
fullfile(chPath, 'signal') ...
fullfile(chPath, 'str') ...
fullfile(chPath, 'symbolic') ...
fullfile(chPath, 'sys') ...
fullfile(chPath, 'twincat') ...
};
end
%------------- END OF CODE --------------
% Please send suggestions for improvement of this file to the original author as
% can be found in the header Your contribution towards improving this function
% will be acknowledged in the "Changes" section of the header