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

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

[Octave-bug-tracker] [bug #36094] Incorrect axis limit calculation


From: Rik
Subject: [Octave-bug-tracker] [bug #36094] Incorrect axis limit calculation
Date: Thu, 05 Apr 2012 20:38:34 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:11.0) Gecko/20100101 Firefox/11.0

Update of bug #36094 (project octave):

                  Status:                    None => Confirmed              
                 Summary:            plot problem => Incorrect axis limit
calculation

    _______________________________________________________

Follow-up Comment #3:

Confirmed on a recent tip.  The problem is almost certainly that the data
differences are small and the plot code is not setting the correct x-axis
limits.  If I manually set the limits, for example, the data correctly shows
as a sloping line rather than a vertical one.

The following code is simpler and demonstrates the problem is with the
magnitude of the values involved.


graphics_toolkit gnuplot;
x = 1e5 + 1e-5*(1:10);
plot (x, 1:10)


If the magnitude of the small steps is changed just a little bit than the plot
works.


x = 1e5 + 1e-4*(1:10);
plot (x, 1:10)




    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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