Example Octave notebook¶
More info here: https://xeus-octave.readthedocs.io/
In [1]:
graphics_toolkit("plotly")
In [2]:
x = 0:0.1:2*pi;
y = sin(x);
plot(x, y);
More info here: https://xeus-octave.readthedocs.io/
graphics_toolkit("plotly")
x = 0:0.1:2*pi;
y = sin(x);
plot(x, y);