
Matlab won't plot my 3d graph
12 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
JESUS DAVID ARIZA ROYETH
2019 年 11 月 4 日
it work well
close all
figure
x=20.*sin(t);
y=20.*cos(t);
z= 10-(t./4).^2;
plot3(x,y,z)

0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!