Sign inSign up

playniuniu/jupyter-octave

By playniuniu

Updated over 9 years ago

Docker for Python3, Jupyter and Octave

Image
2

1.2K

playniuniu/jupyter-octave repository overview

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

Tag summary

Content type

Image

Digest

Size

103.3 MB

Last updated

over 9 years ago

docker pull playniuniu/jupyter-octave