octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #58040] Plot Save Either Fails or Causes Octav


From: Rik
Subject: [Octave-bug-tracker] [bug #58040] Plot Save Either Fails or Causes Octave Crash
Date: Tue, 24 Mar 2020 15:42:09 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko

Follow-up Comment #2, bug #58040 (project octave):

Version 4.4.1 is ancient and no longer supported.  Please try with the latest
stable release which is 5.2.0.  You can find a link to the latest version on
the main Octave web site.

Also, the buffer overflow warning indicates that you are plotting many, many
data points.  You might try reducing the number of data points before plotting
which will speed things up.

As a simple example, keep every 10th data point for a 90% reduction.


x2 = x(1:10:end);
y2 = y(1:10:end);
plot (x2, y2);




    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?58040>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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