Help with MESH command

1 view (last 30 days)
Janez Novak
Janez Novak on 16 Nov 2015
Commented: Janez Novak on 17 Nov 2015
Im trying to write a space with this equations, but i don´t know how to use mesh properly. Please for little help, im new in matlab.
r=linspace(0,1,30)
theta=linspace(0,2*pi,30)
x=r.*cos(theta)
y=r.*sin(theta)
z=r

Accepted Answer

Mike Garrity
Mike Garrity on 16 Nov 2015
Did you mean something like this?
[r,theta] = meshgrid(linspace(0,1,30),linspace(0,2*pi,30));
x = r.*cos(theta);
y = r.*sin(theta);
z = r;
mesh(x,y,z)
  1 Comment
Janez Novak
Janez Novak on 17 Nov 2015
yes this is exactly what i mean thanks a lot

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!