Tue 16 Sep 2014 07:40:41 PM UTC, original submission:
Title says it all: here's a terminal session to demonstrate:
hutch@hutchX1:~/src/octave$ octave
GNU Octave, version 3.8.1
Copyright (C) 2014 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. For details, type 'warranty'.
Octave was configured for "x86_64-pc-linux-gnu".
Additional information about Octave is available at http://www.octave.org.
Please contribute if you find this software useful.
For more information, visit http://www.octave.org/get-involved.html
Read http://www.octave.org/bugs.html to learn how to submit bug reports.
For information about changes from previous versions, type 'news'.
octave:1> x=1:20; plot(x)
octave:2> quit
hutch@hutchX1:~/src/octave$ touch x.oct
hutch@hutchX1:~/src/octave$ octave -q
octave:1> x=1:20; plot(x)
error: caught execution error in library function
error: called from:
error: /usr/share/octave/3.8.1/m/plot/draw/private/__line__.m at line 116, column 21
error: /usr/share/octave/3.8.1/m/plot/draw/line.m at line 54, column 8
error: /usr/share/octave/3.8.1/m/plot/draw/private/__plt__.m at line 497, column 10
error: /usr/share/octave/3.8.1/m/plot/draw/private/__plt__.m at line 243, column 14
error: /usr/share/octave/3.8.1/m/plot/draw/private/__plt__.m at line 202, column 10
error: /usr/share/octave/3.8.1/m/plot/draw/private/__plt__.m at line 118, column 17
error: /usr/share/octave/3.8.1/m/plot/draw/plot.m at line 220, column 10
octave:1> quit
|