Changeset 1184 for trunk/src/command_launch_matlab.m
- Timestamp:
- Nov 6, 2025, 7:03:02 PM (4 weeks ago)
- File:
-
- 1 edited
-
trunk/src/command_launch_matlab.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/command_launch_matlab.m
r1179 r1184 36 36 'matlab -nodisplay -nosplash -nojvm ''' ThreadOption ''' -logfile ''' filelog ''' <<END_MATLAB\n'...%launch the new Matlab session without display 37 37 'addpath(''' path_uvmat ''');\n'... 38 'addpath(''' ActionPath ''');\n']; 38 'current_dir=pwd;\n'... % current working dir 39 'cd(''' ActionPath ''');\n'... 40 'h_fun=str2func(''' ActionName ''');\n'...% create the function handle for the function ActionName 41 'cd(current_dir);\n']; 42 % 'addpath(''' ActionPath ''');\n']; 39 43 for iprocess=1:numel(inputxml) 40 cmd=[cmd '' ActionName '(''' inputxml{iprocess} ''');\n']; 44 % cmd=[cmd '' ActionName '(''' inputxml{iprocess} ''');\n']; 45 cmd=[cmd ' h_fun (''' inputxml{iprocess} ''');\n']; 41 46 end 42 47 cmd=[cmd 'exit\n' 'END_MATLAB\n'];
Note: See TracChangeset
for help on using the changeset viewer.
