You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
540 B

disp('Robotics, Vision & Control: (c) Peter Corke 1992-2011 http://www.petercorke.com')
tb = false;
rvcpath = fileparts( mfilename('fullpath') );
robotpath = fullfile(rvcpath, 'robot');
if exist(robotpath,'dir')
addpath(robotpath);
tb = true;
startup_rtb
end
visionpath = fullfile(rvcpath, 'vision');
if exist(visionpath,'dir')
addpath(visionpath);
tb = true;
startup_mvtb
end
if tb
addpath(fullfile(rvcpath, 'common'));
addpath(fullfile(rvcpath, 'simulink'));
end
clear tb rvcpath robotpath visionpath