Skip to content

playniuniu/docker-jupyter-octave

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Docker for Jupyter and Octave

This is docker image for Python3, Jupyter and Octave, based on alpine linux

screenshot

Run

You can run the command below:

docker run -d --name jupyter -p 8888:8888 -v YOU_VOL_FOLDER:/opt playniuniu/jupyter-octave

and visit http://localhost:8888 for jupyter notebook

Plot

You can use the command in jupyter to plot octave images

tx = ty = linspace (-8, 8, 41)';
[xx, yy] = meshgrid (tx, ty);
r = sqrt (xx .^ 2 + yy .^ 2) + eps;
tz = sin (r) ./ r;
mesh (tx, ty, tz);

For more details, you can check the online demo

About

Docker for Python3, Jupyter and Octave

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages