/docker-octave

Octave in docker

Primary LanguageDockerfileMIT LicenseMIT

Table of Contents

GitHub Build Docker Hub Docker Hub Docker Hub

Octave in docker with UI.

How-To

Build

This will create kalemena/octave:latest image

$ make build

Run

This will start the Octave UI, with redirecting display to current user display.

$ make start

UI example

In Octave UI, you can try plot to check UI is fully working:

>> x = -10:0.1:10;
>> plot (x, sin (x));
Octave UI Plot