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

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

[Octave-bug-tracker] [bug #39546] Disappearing subplot when zooming.


From: Michael Godfrey
Subject: [Octave-bug-tracker] [bug #39546] Disappearing subplot when zooming.
Date: Tue, 23 Jul 2013 15:14:00 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0

Follow-up Comment #4, bug #39546 (project octave):

I made a mistake in the comment below.

The following works to deal with subplots,
such as turning grid marks on/off:

gca1 = subplot(1,2,1);
plot(1:20);
gca2 = subplot(1,2,2);
plot(1:40);
grid(gca1, "on");
grid(gca2, "on");

But, the grid button in the figure menu only acts 
on the "last" plot.

Also,
1. grid(gca1, "on");
   returns: error: grid: argument must be a string
   if gca1 is not a valid axis handle.

2. hold(gcax,"on"); works, and if gcax is not a valid
   axis handle it returns a better message:
   error: Invalid call to hold.  Correct usage is:

So, for the current devel system and fltk the main
problem is that there is no menu button, or other
means to change "subplot focus".  And, the grid
error message needs fixing.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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