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

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

[Octave-bug-tracker] [bug #53461] plotyy does not play nicely in a subpl


From: Ceral Paquet
Subject: [Octave-bug-tracker] [bug #53461] plotyy does not play nicely in a subplot
Date: Sun, 25 Mar 2018 08:42:56 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0

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

                 Summary: plotyy does not play nicely in a subplot
                 Project: GNU Octave
            Submitted by: octavebugs
            Submitted on: Sun 25 Mar 2018 12:42:55 PM UTC
                Category: None
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: None
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 4.2.1
        Operating System: GNU/Linux

    _______________________________________________________

Details:

When running the script below, I see 2 unexpected behaviours.

1) After one time through the loop, the plotyy ignores the subplot directive
and takes up the entire Figure.

2) Not every time, but about 1/2 the time the Figure repositions itself partly
off the screen.

++
close all

for j = 1:2

    subplot(1,2,1);
    plot(1:10);
    
    subplot(1,2,2);
    plotyy(1:10,1:10,1:10,10:-1:1);
    
    drawnow;

end
--





    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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