Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

These two scripts are examples of how to run Matlab MATLAB on the DSMLP / Research Cluster.  Use a text editor, such as nano, to create the script files. 

Make the scripts executable using the chmod command:

chmod a+x file

Only run Matlab MATLAB from with within a job, rather than on the login node.


Run Matlab MATLAB in interactive Interactive mode using the following script. :

Code Block
languagebash
titleMatlab Interactivematlab-interactive.sh
#!/bin/bash
export MLM_LICENSE_FILE=/datasets/software/R2020b/licenses/network.lic
/datasets/software/R2020b/bin/matlab -nojvm -nodisplay -nosplash


Rub Matlab Run MATLAB in Batch mode using the following script where the argument to the script is the name of your Matlab MATLAB batch file (e.g. "matlab-batch.sh MyScript.m").

Code Block
languagebash
titleMatlab Batch modematlab-batch.sh
#!/bin/bash
export MLM_LICENSE_FILE=/datasets/software/R2020b/licenses/network.lic
/datasets/software/R2020b/bin/matlab -nodisplay -nosplash -batch "run('$1');"

...