From: Yung Olivier on
Hey everybody:
Now there is a 1×100 array,using plot(), we can get its curve, but how to obtain its surface with rotating around Y axis?
Thank you very much!
From: Roger Stafford on
"Yung Olivier" <gyolive(a)qq.com> wrote in message <hvfu5l$gg0$1(a)fred.mathworks.com>...
> Hey everybody:
> Now there is a 1×100 array&#65292;using plot(), we can get its curve, but how to obtain its surface with rotating around Y axis?
> Thank you very much!

If you were plotting an x-array against a y-array, then you can do this:

n = 100;
[rho,theta] = meshgrid(x,linspace(0,2*pi,n));
Z = repmat(y(:).',n,1);
X = rho.*cos(theta);
Y = rho.*sin(theta);
surf(X,Y,Z)

In the surface here the curve will be rotated about the z-axis of the three-dimensional surf space.

If instead you were plotting y against its own index, just use x = 1:m in the above where m is the length of y.

Roger Stafford