I want to create a 3D plot with same axis label same below without having any blue dots( only 3D plots empty )

 Réponse acceptée

Walter Roberson
Walter Roberson le 8 Avr 2022

0 votes

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)

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by