Skip to content

Matlab

Matlab is available for academic use only at CCI.

Matlab is available for use from /gpfs/u/software/x86_64-rhel7/matlab/2020a/bin/matlab . If you can use GPUs use NPL cluster, otherwise run on DRP cluster. Make sure that you allocate a node using salloc or sbatch and run there, not on a front end node.

Directions on remoteX usage to see the application GUI can be found at https://secure.cci.rpi.edu/wiki/examples/RemoteX/

An example submission script is available for the DRP cluster.

Submitting Jobs to Slurm

Multi-node Matlab scripts will require unique configuration. Single-node script (multi-threaded) may use a script like the following. Please contact support for more information.

#!/bin/bash
module load matlab
srun matlab -nodisplay -nosplash -nodesktop -nojvm -r example

or

matlab -nodisplay -nosplash -nodesktop -nojvm < example.m