I am using Octave under Ubuntu, connected by ssh from another computer. All I want to see is the scripts commands, because for the plots I save them in .png form for opening later.
However, everytime I order the software to make a plot, like in:
clf ();
surface (tx, ty, telog);
filename=sprintf('surfaceLOG-%04d',k);
saveas (1, filename, "png");
I obtain an ascii of the plot in the Terminal too, which doesnt let me see the previous output, like in:
+---------------------------------------------------------------+
| +-------------------------------------+ |
| 14 |-+ | | | | | | |+-| +++25 |
| | + + + + + + + | ++| |
| 12 |-+ +-| ||| |
| | | ||+20 |
| | | ||| |
| 10 |-+ +-| ||| |
| | | ||+15 |
| y ax8s|-+ +-| ||| |
| 6 |-+ +-| ||| |
| | | ||+10 |
| 4 |-+ +-| ||| |
| | | ||| |
| | | ||+5 |
| 2 |-+ + + + + + + ++-| ||| |
| | | | | | | | | | ||| |
| 0 +-------------------------------------+ +++ |
| 0 2 4 6 8 10 12 14 |
+---------------------------------------------------------------+
So my question is how to supress this ascii plot output.
Using:
surface (tx, ty, telog,'visible','off');
does not work since it makes an empty plot in the picture file.