Create a 3D plot
8 ビュー (過去 30 日間)
古いコメントを表示
I want to create a 3D plot with same axis label same below without having any blue dots( only 3D plots empty )

0 件のコメント
採用された回答
Walter Roberson
2022 年 4 月 8 日
axis equal
xlim([-1, 1]); ylim([-1, 1]); zlim([-1, 1]);
T = -1:.5:1;
xticks(T); yticks(T); zticks(T);
grid on
view(3)
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
