Changeset 1179 for trunk/src/command_launch_matlab.m
- Timestamp:
- Mar 23, 2025, 11:13:38 AM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/command_launch_matlab.m
r1134 r1179 1 %'command_launch_matlab': creates the command strings for opening a new Matlab 2 % sessionand running a programme in a Linux system('GLNX86','GLNXA64','MACI64')1 %'command_launch_matlab': creates the command strings for opening a new Matlab session 2 % and running a programme in a Linux system('GLNX86','GLNXA64','MACI64') 3 3 %------------------------------------------------------------------------ 4 4 % function cmd=command_launch_matlab(filelog,path_uvmat,ActionPath,ActionName,inputxml,option) … … 47 47 end 48 48 49 %% case cluster:50 % matlab_ver = ver('MATLAB');51 % matlab_version = matlab_ver.Version;52 % cmd=[...53 % '#!/bin/bash\n'...54 % 'source /etc/profile\n'...55 % 'module purge\n'...56 % 'module load matlab/' matlab_version '\n'...% CHOICE OF CURRENT MATLAB VERSION57 % 'matlab -nodisplay -nosplash -nojvm -singleCompThread -logfile ''' filelog{iprocess} ''' <<END_MATLAB\n'...% open a new Matlab session without display58 % 'addpath(''' path_series ''');\n'...59 % 'addpath(''' ActionPath ''');\n'...60 % '' ActionName '(''' filexml{iprocess} ''');\n'...% launch the Matlab function selected by the GUI 'series'61 % 'exit\n'...62 % 'END_MATLAB\n'];63 % end64 49 65 50
Note: See TracChangeset
for help on using the changeset viewer.