-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathdef.m
More file actions
60 lines (54 loc) · 2.35 KB
/
pathdef.m
File metadata and controls
60 lines (54 loc) · 2.35 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
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 %%%
'/h/u6/g4/00/g3hsuehy/BCB420/ShmooS/SDE_Toolbox_1.4.1:', ...
'/h/u6/g4/00/g3hsuehy/BCB420/ShmooS/SDE_Toolbox_1.4.1/models_library:', ...
matlabroot,'/toolbox/matlab/general:', ...
matlabroot,'/toolbox/matlab/ops:', ...
matlabroot,'/toolbox/matlab/lang:', ...
matlabroot,'/toolbox/matlab/elmat:', ...
matlabroot,'/toolbox/matlab/elfun:', ...
matlabroot,'/toolbox/matlab/specfun:', ...
matlabroot,'/toolbox/matlab/matfun:', ...
matlabroot,'/toolbox/matlab/datafun:', ...
matlabroot,'/toolbox/matlab/polyfun:', ...
matlabroot,'/toolbox/matlab/funfun:', ...
matlabroot,'/toolbox/matlab/sparfun:', ...
matlabroot,'/toolbox/matlab/scribe:', ...
matlabroot,'/toolbox/matlab/graph2d:', ...
matlabroot,'/toolbox/matlab/graph3d:', ...
matlabroot,'/toolbox/matlab/specgraph:', ...
matlabroot,'/toolbox/matlab/graphics:', ...
matlabroot,'/toolbox/matlab/uitools:', ...
matlabroot,'/toolbox/matlab/strfun:', ...
matlabroot,'/toolbox/matlab/imagesci:', ...
matlabroot,'/toolbox/matlab/iofun:', ...
matlabroot,'/toolbox/matlab/audiovideo:', ...
matlabroot,'/toolbox/matlab/timefun:', ...
matlabroot,'/toolbox/matlab/datatypes:', ...
matlabroot,'/toolbox/matlab/verctrl:', ...
matlabroot,'/toolbox/matlab/codetools:', ...
matlabroot,'/toolbox/matlab/helptools:', ...
matlabroot,'/toolbox/matlab/demos:', ...
matlabroot,'/toolbox/matlab/timeseries:', ...
matlabroot,'/toolbox/matlab/hds:', ...
matlabroot,'/toolbox/local:', ...
matlabroot,'/toolbox/shared/controllib:', ...
matlabroot,'/toolbox/shared/imageslib:', ...
matlabroot,'/toolbox/images/medformats:', ...
matlabroot,'/toolbox/images/iptutils:', ...
matlabroot,'/toolbox/images/imdemos:', ...
matlabroot,'/toolbox/images/imuitools:', ...
matlabroot,'/toolbox/images/images:', ...
%%% END ENTRIES %%%
...
];
p = [userpath,p];