Sample Octave Notebook

This is a demo notebook for the Octave language.

For learning about Octave, please check this tutorial.

For learning about jupyter notebooks, please check this other tutorial.


In [ ]:
2+2

In [ ]:
x = -pi:0.01:pi;
plot(x, sin(x))

Try it!

Type and execute Octave commands in the cell below.


In [ ]: