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

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

[Octave-bug-tracker] [bug #32701] Incorrect plot - missing row


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #32701] Incorrect plot - missing row
Date: Tue, 08 Mar 2011 16:24:41 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13

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

Looks  like the axis limits are not be set property. What do you get with ...


x = [10:2:30]; 
y = [7.1:0.1:7.5]; 
z = [1:11;2:12;3:13;4:14;5:15]; 
surf (x,y,z)
axis auto
x_limits = get (gca, "xlim")
y_limits = get (gca, "ylim")
z_limits = get (gca, "zlim")
axis tight
x_tight_limits = get (gca, "xlim")
y_tight_limits = get (gca, "ylim")
z_tight_limits = get (gca, "zlim")


I see ... 


x_limits =   10   30
y_limits =   7.0000   7.5000
z_limits =    0   20


... and after "axis tight" ...


x_tight_limits =   10   30
y_tight_limits =   7.1000   7.5000
z_tight_limits =    1   15



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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