Aplicaciones Graficos 3D Matlab
Aplicaciones Graficos 3D Matlab
Aplicaciones Graficos 3D Matlab
grid on
t=linspace(0,10*pi,30000);
plot3(x,y,z)
grid on Mesh(x,y,z)
Surf(x,y,z) [x y]=meshgrid(-3:0.2:3);
surf(x,y,z)
4)
[x y]=meshgrid(0:0.1:1, 0:0.2:2);
Para dibujar 10 curvas de nivel de la
z=exp(x.^2 + y.^2); gráfica anterior
surf(x,y,z)
Contour(x,y,z.10)
grid on
7)
Contour3(x,y,z,15) [x y z]=cylinder(25);
surf(x,y,z)
6)
[x y z]=sphere(20);
surf(x,y,z)