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

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

[Octave-bug-tracker] [bug #48718] Blank plot under some conditions


From: Doug Stewart
Subject: [Octave-bug-tracker] [bug #48718] Blank plot under some conditions
Date: Sun, 7 Aug 2016 21:42:33 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36

URL:
  <http://savannah.gnu.org/bugs/?48718>

                 Summary: Blank plot under some conditions
                 Project: GNU Octave
            Submitted by: dastew
            Submitted on: Sun 07 Aug 2016 09:42:31 PM GMT
                Category: Plotting
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Doug Stewart
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

ubuntu 16.04 and dev. and default qt graphics.

There are three things that all must happen to show this bug.
1) must have at least 2 subplots.
2) the x data range must be < 1e-3
3) the xlabel must be before the lines are drawn

With these 3 conditions then the plot is wrong( blank)

You can use this code to explore the 3 conditions.



x=[0:4] * 1e-4;
for k=1:2
subplot(2,1 ,k)
xlabel("hi")
hold on 
plot(x,rand(5,3))
hold off
#xlabel("KK")
endfor






    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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