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

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

[Octave-bug-tracker] [bug #42033] subplot() not on hold


From: Armin Müller
Subject: [Octave-bug-tracker] [bug #42033] subplot() not on hold
Date: Thu, 03 Apr 2014 08:15:17 +0000
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0

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

                 Summary: subplot() not on hold
                 Project: GNU Octave
            Submitted by: arm_in
            Submitted on: Do 03 Apr 2014 08:15:16 GMT
                Category: Plotting
                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: 3.8.1
        Operating System: Microsoft Windows

    _______________________________________________________

Details:

When running the code below, a new figure divided into 4 subplots is created.
Subplot 4 gets erased, although it has been set on hold.

Running Octave 3.8.1 under Windows 7 x64 


% subplots 1, 2, 3 contain two lines each
% subplot 4 is not on "hold" and will be erased when plotting the second line

figure(1)

for idx = 1:4
  subplot(4, 1, idx)
  plot( 1:10, 1:10)
end

for idx = 1:4
  subplot(4, 1, idx)
  hold on
  plot(11:20, 1:10)
  hold off
end





    _______________________________________________________

File Attachments:


-------------------------------------------------------
Date: Do 03 Apr 2014 08:15:17 GMT  Name: subplot4.png  Size: 28kB   By: arm_in

<http://savannah.gnu.org/bugs/download.php?file_id=31110>

    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Nachricht gesendet von/durch Savannah
  http://savannah.gnu.org/




reply via email to

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