Create a 3D plot

4 次查看(过去 30 天)
I want to create a 3D plot with same axis label same below without having any blue dots( only 3D plots empty )

采纳的回答

Walter Roberson
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 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by