MATLAB Distributing Computing Server
From HPC users
Revision as of 16:44, 22 November 2012 by Albensoeder (talk | contribs) (Created page with "== Submitting MATLAB jobs == To submit a MATLAB job, you must first load the environment module in your submission script: module load matlab This automatically loads the new...")
Submitting MATLAB jobs
To submit a MATLAB job, you must first load the environment module in your submission script:
module load matlab
This automatically loads the newest version, if several versions are installed. After that, invoke MATLAB in batch mode:
matlab -nosplash -nodesktop -r mymatlab_input
where mymatlab_input.m (a so-called ".m-file") is an ASCII text file containing the sequence of MATLAB commands that you would normally enter in an interactive session.