Azzera filtri
Azzera filtri

How to obtain empty 3d plot

32 visualizzazioni (ultimi 30 giorni)
kavinda hw
kavinda hw il 3 Set 2017
Commentato: kavinda hw il 4 Set 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

Risposta accettata

Walter Roberson
Walter Roberson il 4 Set 2017
ax = axes();
xlim(ax, [-20 20]);
ylim(ax, [-20 20]);
zlim(ax, [-20 20]);
view(ax, 3)
hold(ax, 'on')

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by