3D plotting in Matlab
古いコメントを表示
How to plot a 3d 'U' shape in MATLAB parallel to XY plane?
2 件のコメント
Dcember
2016 年 11 月 23 日
Hope it helps:
[y,z]=meshgrid(linspace(-10,10));
x=y.^4;
surf(x,y,z)
xlabel('x')
ylabel('y')
zlabel('z')
shraddha s
2016 年 11 月 23 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Labels and Styling についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
