How do I remove the Z-axis in a 3D plot so that it looks like the one in the attched picture.

 Réponse acceptée

Star Strider
Star Strider le 31 Août 2019

0 votes

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 commentaires

Elijah Tapiwa Chipato
Elijah Tapiwa Chipato le 1 Sep 2019
thanks it works!!!
Star Strider
Star Strider le 1 Sep 2019
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by