Skip to content

Scilab

Scilab is a numerical computation tool providing a powerful computing environment for engineering and scientific applications.

Scilab is available as a module on Apocrita.

Usage

To run the default installed version of Scilab, simply load the scilab module:

module load scilab
scilab-cli

For further usage documentation, see the output of scilab-cli --help.

Example jobs

Serial job

Here is an example job running on 4 cores:

#!/bin/bash
#$ -cwd
#$ -j y
#$ -pe smp 1
#$ -l h_rt=1:0:0
#$ -l h_vmem=1G

module load scilab
scilab-cli -f myscript.sci

References