These two scripts are examples of how to run Matlab on the DSMLP / Research Cluster.
Run Matlab in interactive mode
Matlab Interactive
#!/bin/bash export MLM_LICENSE_FILE=/datasets/software/R2020b/licenses/network.lic /datasets/software/R2020b/bin/matlab -nojvm -nodisplay -nosplash
Rub Matlab in Batch mode
Matlab Batch mode
#!/bin/bash export MLM_LICENSE_FILE=/datasets/software/R2020b/licenses/network.lic /datasets/software/R2020b/bin/matlab -nodisplay -nosplash -batch "run('$1');"