
Matlab won't plot my 3d graph
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Madara Hettigama
el 4 de Nov. de 2019
Respondida: JESUS DAVID ARIZA ROYETH
el 4 de Nov. de 2019
I entered
t= 0:0.4:40;
x=20.*sin(t);
y=20.*cos(t);
z= 10-(t./4).^2;
plot3(x,y,z)
and clicked run bit nothing happened?
0 comentarios
Respuestas (1)
JESUS DAVID ARIZA ROYETH
el 4 de Nov. de 2019
it work well
close all
figure
x=20.*sin(t);
y=20.*cos(t);
z= 10-(t./4).^2;
plot3(x,y,z)

0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D 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!