Using octave in a terminal window
x=1:10;
plot(x);
works fine, produces a plot window which is zoomable etc.
running octave under emacs, the plot appears, but the plot window is hung and you can't zoom. If you execute plot(x);
again, the window disappears.
I'm using Debian Jessie, with GNU Emacs 24.3.1 and GNU Octave, version 3.8.1.
To get it to work at all I had to make a .octaverc to set the prompt.
$ cat ~/.octaverc
PS1(">> ")