mathematica
Link to section 'Description' of 'mathematica' Description
Mathematica is a technical computing environment and programming language with strong symbolic and numerical abilities.
Link to section 'Versions' of 'mathematica' Versions
- Bell: 11.3, 12.1, 12.3, 13.1, 14.1
- Scholar: 14.1
- Gilbreth: 11.3, 12.1, 12.3, 13.1, 14.1
- Negishi: 13.1, 14.1
- Gautschi: 14.1
Link to section 'Module' of 'mathematica' Module
You can load the modules by:
module load mathematica
Link to section 'Running Mathematica' of 'mathematica' Running Mathematica
Users can run Mathematica GUI in interactive jobs or run it as batch jobs.Link to section 'Interactive jobs' of 'mathematica' Interactive jobs
sinteractive -N1 -n24 -t4:00:00 -A standby
module load mathematica
Mathematica
Notice: The executable name has changed from Mathematica
to WolframNB
in version 14.1
Link to section 'Batch job' of 'mathematica' Batch job
To submit a sbatch job on our clusters:
#!/bin/bash
#SBATCH -A XXX
#SBATCH -t 10:00:00
#SBATCH -N 1
#SBATCH -n 24
#SBATCH --job-name=mathematica
#SBATCH --mail-type=FAIL,BEGIN,END
#SBATCH --error=%x-%J-%u.err
#SBATCH --output=%x-%J-%u.out
module load mathematica
math -noprompt < input.m