If I type octave on terminal and then:
x = linspace(0, 2*pi, 100);
y = sin(x);
plot(x, y);
the graphic correctly shows the plot. That's what I tried: I created a text file named gettingStarted.m where I wrote the three lines above inside of it, in order to execute this file with Octave. I type octave gettingStarted.m but the plot doesn't appear. Does not plotting work if you run an external file with Octave?
I'm working on Ubuntu 12.04, 32 bit