Octave - nesi/applications GitHub Wiki
Table of Contents
- Homepage: http://www.gnu.org/software/octave/
- Version available: 3.6.4
GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems, and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. Octave is normally used through its interactive command line interface, but it can also be used to write non-interactive programs. The Octave language is quite similar to Matlab so that most programs are easily portable.
module load Octave
Job description (download)
#!/bin/bash
#SBATCH -J Serial_Job
#SBATCH --job-name=octave
#SBATCH -A uoa99999 # Project Account
#SBATCH --time=00:10:00 # Walltime
#SBATCH --mem-per-cpu=2048 # memory/cpu (in MB)
#SBATCH [email protected]
#SBATCH --mail-type=ALL
module load Octave
octave 'myTest.m'
- myTest.m (download)