Graph/Draw hyperboloid
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lillebror Sagmen-Andersson
el 1 de Abr. de 2021
Comentada: Lillebror Sagmen-Andersson
el 1 de Abr. de 2021
Hi! [This is a homework problem]
"
,
, Tips: in polar corrdinates the surface of the equation is: 
The result should look like this:"

We have just used surf and meshgrid to plot a cone, but I can't seem to get this hyberbolid :(
edit: This is what we have done just before; 

r=linspace(0,1,21);
theta=linspace(0,2*pi,63);
k=1;
m=1/3
[R,THETA]=meshgrid(r,theta);
X=R.*cos(THETA);
Y=R.*sin(THETA);
Z=k.*(X.^2 + Y.^2).^m;
surf(X,Y,Z)
axis equal
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!