help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Plot command crashes Octave


From: Sebastian Schöps
Subject: Re: Plot command crashes Octave
Date: Sun, 3 Jul 2016 23:40:49 -0700 (PDT)

Christopher Smith wrote
> Hello,
> I am running Octave on El Captain for the first time.  I use Matlab
> extensively, and was excited to find a GNU platform!  I created two
> vectors and tried to plot them using the plot command.  This crashed
> Octave.  Is this a common bug?  Is there a simple way to fix it?  I
> clicked on the details button and have included the contents below (in
> case that would be helpful).  Thanks and have a great day!
> -Chris Smith

It is a known bug but "sadly" it does not occur on our development machines. 
However, if you do not care which plot backend is used, then this should fix
the problem:

graphics_toolkit('gnuplot')
figure;
x=1:10;
plot(x,sin(x));

Please let us know if this works.

Bye
Sebastian



--
View this message in context: 
http://octave.1599824.n4.nabble.com/Plot-command-crashes-Octave-tp4678162p4678163.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]