Borrar filtros
Borrar filtros

Removing Z-Axis in 3D plot(plot3)

45 visualizaciones (últimos 30 días)
Elijah Tapiwa Chipato
Elijah Tapiwa Chipato el 31 de Ag. de 2019
Comentada: Star Strider el 1 de Sept. de 2019
How do I remove the Z-axis in a 3D plot so that it looks like the one in the attched picture.

Respuesta aceptada

Star Strider
Star Strider el 31 de Ag. de 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 comentarios
Elijah Tapiwa Chipato
Elijah Tapiwa Chipato el 1 de Sept. de 2019
thanks it works!!!
Star Strider
Star Strider el 1 de Sept. de 2019
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by