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

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

[Octave-bug-tracker] [bug #52557] flickering of axis and tick marks with


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #52557] flickering of axis and tick marks with animation
Date: Thu, 30 Nov 2017 08:10:57 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:56.0) Gecko/20100101 Firefox/56.0

Update of bug #52557 (project octave):

              Item Group:                    None => Performance            
                  Status:                    None => Confirmed              

    _______________________________________________________

Follow-up Comment #1:

The axes is being reset at each time step because you are using "plot" which
is a high level function. There are 2 solutions:

* either prevent axes from being reset:


...
figure (2); clf;
axes ("nextplot", "replacechildren");
axis ("square") ## remove it from the loop body
...


* or use "line" (low level, axes untouched) instead of "plot".

This is the expected behavior, except that in Octave 4.2 it used to be faster.
So I'll change the category to performance.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?52557>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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