Using MATLAB on AI.Panther

Body

AI.Panther has MATLAB R2022b installed for interactive and batch use via the environment module system.

Loading the module

module load matlab/r2022b

Interactive session

Request a compute node and start MATLAB without the GUI:

srun --partition=med --time=01:00:00 --pty bash
module load matlab/r2022b
matlab -nodisplay -nosplash

Batch submission

Example job script:

#!/bin/bash
#SBATCH --partition=med
#SBATCH --time=01:00:00
#SBATCH --cpus-per-task=4
#SBATCH --mem=8G

module load matlab/r2022b
matlab -nodisplay -nosplash -batch "myscript"

Parallel Computing Toolbox (single-node)

PCT works for single-node parallel jobs using the local profile. Match your parpool size to your requested --cpus-per-task.

Parallel Server (multi-node)

MATLAB Parallel Server is not licensed at FIT. Multi-node parallel MATLAB jobs are not supported; parallel work is limited to a single node via the Parallel Computing Toolbox.

Details

Details

Article ID: 22069
Created
Tue 5/12/26 8:34 AM
Modified
Tue 5/12/26 8:54 AM