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

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

[Octave-bug-tracker] [bug #34462] Current axes should be listed 1st in t


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #34462] Current axes should be listed 1st in the figure's children
Date: Thu, 27 Sep 2012 20:33:41 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14

Follow-up Comment #2, bug #34462 (project octave):

Rik,

If a user types 


figure ()
plot (rand (3))


(s)he would expect the plot to be placed in the new figure.  To be consistent,
the code below should place the plot in the newly created axes.


axes ()
plot (rand (3))


Thus, I think the proper behavior is


htmp = axes ();
axes (htmp);



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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