help-octave
[Top][All Lists]
Advanced

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

Maximum size for mesh() plot?


From: asfarley
Subject: Maximum size for mesh() plot?
Date: Thu, 29 Jan 2009 16:12:04 -0800 (PST)

Hi everyone, is there a maximum meshgrid size for the mesh() function? These
commands produce the expected output:

x = [0:0.1:5];
y = [0:0.1:10];
[xx,yy] = meshgrid(x,y);
z = sin(xx).*sin(yy);
mesh(x,y,z);

But these commands either give no results, or cause octave to hang:

x = [0:0.1:50];
y = [0:0.1:100];
[xx,yy] = meshgrid(x,y);
z = sin(xx).*sin(yy);
mesh(x,y,z);
-- 
View this message in context: 
http://www.nabble.com/Maximum-size-for-mesh%28%29-plot--tp21739152p21739152.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

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