-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrobotics_toolbox_path_init.m
More file actions
executable file
·27 lines (22 loc) · 1.13 KB
/
Copy pathrobotics_toolbox_path_init.m
File metadata and controls
executable file
·27 lines (22 loc) · 1.13 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
% Pfad-Initialisierung für die Matlab-Robotik-Toolbox
%
% Diese Pfad-Initialisierung muss zeitlich nach der Pfad-Initialisierung
% der Robotics-Toolbox von Peter Corke ausgeführt werden, damit
% gleichnamige Funktionen aus dieser Toolbox geholt werden. Die Funktionen
% von Peter Corke sind teilweise nicht kompatibel mit Simulink.
% Moritz Schappler, schappler@imes.uni-hannover.de, 2018-03
% (C) Institut für mechatronische Systeme, Universität Hannover
this_tb_path = fileparts( mfilename('fullpath') );
addpath(this_tb_path);
addpath(fullfile(this_tb_path, 'contact_model'));
addpath(fullfile(this_tb_path, 'controllers'));
addpath(fullfile(this_tb_path, 'dynamics'));
addpath(fullfile(this_tb_path, 'kinematics'));
addpath(fullfile(this_tb_path, 'mechanics'));
addpath(fullfile(this_tb_path, 'regressor'));
addpath(fullfile(this_tb_path, 'transformation'));
addpath(fullfile(this_tb_path, 'matlab_class'));
% Ergebnis-Ordner für Ausgabe der Test-Skripte erstellen
mkdirs(fullfile(this_tb_path, 'examples_tests', 'results'));
% Abhängigkeiten nicht kompilieren; verzögert den Start von Matlab zu sehr
% mex_script_dependencies('ParRob', true);