0001 function dkepath = default_path_profile
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 if ~exist('LUKEversion_jd'),
0014 dir_LUKE = pwd;
0015 if isempty(strfind(dir_LUKE,'/Project_DKE')),
0016 dir_LUKE = [dir_LUKE,'/Project_DKE'];
0017 else
0018 dir_LUKE = [dir_LUKE(1:strfind(dir_LUKE,'/Project_DKE')-1),'/Project_DKE'];
0019 end
0020
0021 addpath(genpath(dir_LUKE),'-BEGIN');
0022
0023 end
0024
0025 [~,matver] = LUKEversion_jd;
0026
0027 dkepath.machine = 'default';
0028 dkepath.hostname = hostname_jd;
0029 dkepath.computer = computer;
0030
0031 dkepath.luke_root = [pwd,filesep];
0032 dkepath.local_root = [pwd,filesep];
0033 dkepath.temppathroot = [pwd,filesep];
0034
0035 dkepath.(['mex',matver]) = [dkepath.luke_root,'Project_DKE/MEX/Bin/default/MATLAB',matver];
0036
0037 dkepath.compiler_opt.helmex = NaN;
0038 dkepath.compiler_opt.fopts = '';
0039 dkepath.compiler_opt.copts = '';
0040
0041 dkepath.remote = [];
0042