Matlab¶
Support tier: 3
Read information about support tiers.
Installed versions¶
| Resource | Version |
|---|---|
| Arrhenius | 2025b |
Read information about how to load this software in your environment by searching for Lmod module.
General information¶
MATLAB is a proprietary multi-paradigm programming language and numeric computing environment developed by MathWorks. MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages. In order to use Matlab you need to have a Matlab license. KTH has a site-wide license for Matlab which includes all Matlab toolboxes.
External links¶
How to use¶
Getting Started with serial and parallel MATLAB¶
Load the matlab module by
If the license on Arrhenius is not working for you, we are still waiting for the implementation of an academic license unix group on Arrhenius.
In order to use MATLAB you need to have a MATLAB license. KTH has a site license that enable academic users of PDC computers around the world (student, faculty, staff) to use MATLAB. To access the installation of MATLAB on Dardel, please contact PDC support and request access.
Info
The below instructions are for Dardel but will in the nearest future work the same for Arrhenius.
Running interactively¶
MATLAB can be run interactively on an allocated node. To book a single node for one hour, type
A typical output will look like
salloc: Granted job allocation 190431
salloc: Waiting for resource configuration
salloc: Nodes n269 are ready for job
and then start MATLAB with
In case you do not need a full node with 256 cores, you could request cores in the shared partition. These cores are shared with other users, with the amount of memory provided proportional to the number of cores awarded.
A typical output will look like
Node nid001015 is now yours for the next hour, and you can log into it and start MATLAB. On Dardel you can login to the reserved node via the login node and then start MATLAB with In case you do not need a full node with 128 cores, you could request cores in the shared partition. These cores are shared with other users, with the amount of memory provided proportional to the number of cores awarded.In the following example, a parallel pool of 24 workers is opened and a function, parallel_example (described further below), is called
>> p=parpool(24)
Starting parallel pool (parpool) using the 'local' profile ... connected to 24 workers.
p =
Pool with properties:
Connected: true
NumWorkers: 24
Cluster: local
AttachedFiles: {}
IdleTimeout: 30 minute(s) (30 minutes remaining)
SpmdEnabled: true
>> parallel_example
t =
2.4711
ans =
2.4711
Running parallel batch jobs¶
You can also submit parallel workflows to the SLURM queueing system. The following job script allocates 16 cores on Dardel and runs one MATLAB program.
#!/bin/bash
#SBATCH -A naissYYYY-X-XX
#SBATCH -J myjob
#SBATCH -p shared
#SBATCH -c 16
#SBATCH -t 10:00:00
# Load the MATLAB module
ml add PDC/23.12
ml matlab/r2024b
# Launch the MATLAB calculation
matlab -nosplash -nodesktop -nodisplay < your_matlab_program.m > your_matlab_program.out
run_matlab.sh.
You can then submit the job with
It is advisable to run your code with different numbers of workers to
determine the ideal number to use.
Running multiple serial batch jobs¶
If you have several serial MATLAB jobs that can be run simultaneously (for example, one MATLAB program with different input parameters), these can be run simultaneously on a booked node (in the main partition) or on booked cores (in the shared partition). A simple bash script for submitting multiple MATLAB jobs on 24 cores in the shared partition of Dardel node can look like
#!/bin/bash
#SBATCH -A naissYYYY-X-XX
#SBATCH -J myjob
#SBATCH -p shared
#SBATCH -c 24
#SBATCH -t 10:00:00
# Load the Matlab module
ml add PDC/23.12
ml matlab/r2024b
# Run matlab for 24 individual programs serial_program_1.m,
# serial_program_2.m ... and print output in files logfile_1, logfile_2, ...
# The input files must be in the directory where you submit this script.
# This is also where the output will be created.
for i in {1..24} ; do
matlab -nosplash -nodesktop -nodisplay < serial_program_${i}.m > logfile_$i &
done
# This wait command must be present since otherwise the job will terminate immediately
wait
run_matlab.sh.
You can then submit the job with
Source repository