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
| function p = pathdef
%PATHDEF Search path defaults.
% PATHDEF returns a string that can be used as input to MATLABPATH
% in order to set the path.
% Copyright 1984-2002 The MathWorks, Inc.
% $Revision: 1.4.2.1 $ $Date: 2003/01/16 12:51:34 $
% DO NOT MODIFY THIS FILE. IT IS AN AUTOGENERATED FILE.
% EDITING MAY CAUSE THE FILE TO BECOME UNREADABLE TO
% THE PATHTOOL AND THE INSTALLER.
p = [...
%%% BEGIN ENTRIES %%%
matlabroot,'\toolbox\matlab\general;',...
matlabroot,'\toolbox\matlab\ops;',...
matlabroot,'\toolbox\matlab\lang;',...
matlabroot,'\toolbox\matlab\elmat;',...
matlabroot,'\toolbox\matlab\elfun;',...
[...]
matlabroot,'\toolbox\rtw\targets\xpc\xpc\xpcmngr;',...
matlabroot,'\toolbox\rtw\targets\xpc\target\kernel\embedded;',...
matlabroot,'\work;',...
%%% END ENTRIES %%%
...
];
p = [userpath,p]; |
Partager