From: Jeff Westmoreland on 15 May 2010 23:06 I am trying to plot a 3d cone (upside down) using the implicit equatin x^2+y^2=z^2, but having trouble finding out how to plot implicit functions with matlab, any suggestions would be appreciated. thanks, Jeff
From: us on 16 May 2010 04:27 "Jeff Westmoreland" <jeffswestmoreland(a)gmail.com> wrote in message <hsnnet$9s4$1(a)fred.mathworks.com>... > I am trying to plot a 3d cone (upside down) using the implicit equatin x^2+y^2=z^2, but having trouble finding out how to plot implicit functions with matlab, any suggestions would be appreciated. > > thanks, Jeff one of the many solutions [x,y]=meshgrid(-10:.5:10); z=sqrt(x.^2+y.^2); surfl(x,y,z); % also, look at EZSURF us
|
Pages: 1 Prev: Edge Linking for curved edges Next: problem with num2str |