default_path_profile

PURPOSE ^

SYNOPSIS ^

function dkepath = default_path_profile

DESCRIPTION ^

 default path definitions for laptop of Joan Decker 

    Output:

       - dkepath: path structure

   Warning: none

 By Yves Peysson (CEA/DSM/IRFM, yves.peysson@cea.fr) and Joan Decker (CEA/DSM/IRFM, joan.decker@cea.fr)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function dkepath = default_path_profile
0002 %
0003 % default path definitions for laptop of Joan Decker
0004 %
0005 %    Output:
0006 %
0007 %       - dkepath: path structure
0008 %
0009 %   Warning: none
0010 %
0011 % By Yves Peysson (CEA/DSM/IRFM, yves.peysson@cea.fr) and Joan Decker (CEA/DSM/IRFM, joan.decker@cea.fr)
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;%machine type and supported OS
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 %

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.