Effacer les filtres
Effacer les filtres

How to obtain empty 3d plot

32 vues (au cours des 30 derniers jours)
kavinda hw
kavinda hw le 3 Sep 2017
Commenté : kavinda hw le 4 Sep 2017
I am trying to plot empty 3d plot with axis -20:5:20 and plot relevant data later. how can I plot such a 3D plot. please help

Réponse acceptée

Walter Roberson
Walter Roberson le 4 Sep 2017
ax = axes();
xlim(ax, [-20 20]);
ylim(ax, [-20 20]);
zlim(ax, [-20 20]);
view(ax, 3)
hold(ax, 'on')
  1 commentaire
kavinda hw
kavinda hw le 4 Sep 2017
Thank you for response

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by