Removing Z-Axis in 3D plot(plot3)
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Elijah Tapiwa Chipato
il 31 Ago 2019
Commentato: Star Strider
il 1 Set 2019
How do I remove the Z-axis in a 3D plot so that it looks like the one in the attched picture.
0 Commenti
Risposta accettata
Star Strider
il 31 Ago 2019
Try this:
x = randn(1, 100); % Create Data
y = randn(1, 100); % Create Data
z = randn(1, 100); % Create Data
figure
plot3(x, y, z)
Ax = gca;
Ax.ZAxis.Visible = 'off';
Ax.ZGrid = 'off';
Ax.Color = 'none';
Use your own data.
2 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!