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

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

[Octave-bug-tracker] [bug #39874] subplot() clears the plot


From: Michael Goffioul
Subject: [Octave-bug-tracker] [bug #39874] subplot() clears the plot
Date: Tue, 27 Aug 2013 03:24:25 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36

Follow-up Comment #3, bug #39874 (project octave):

I think what the OP means is that if a plot already exists in subplot 211,
then the simple call subplot(2,1,1) should not erase it. It should only make
the subplot 211 the current one (that is, the one where the next plot command
will be applied).

If I understand correctly, you can't do the following at the moment:


subplot (2, 1, 1);
plot(1:100);
subplot (2, 1, 1); % <-- the first plot is erased at this point
hold on;           % <-- no real effect as the first plot is erased
plot(100:-1:1);



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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