Create a 3D plot
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mubarak Alanazi
am 8 Apr. 2022
Beantwortet: Walter Roberson
am 8 Apr. 2022
I want to create a 3D plot with same axis label same below without having any blue dots( only 3D plots empty )

0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 8 Apr. 2022
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
