Borrar filtros
Borrar filtros

How to obtain empty 3d plot

32 visualizaciones (últimos 30 días)
kavinda hw
kavinda hw el 3 de Sept. de 2017
Comentada: kavinda hw el 4 de Sept. de 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

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Sept. de 2017
ax = axes();
xlim(ax, [-20 20]);
ylim(ax, [-20 20]);
zlim(ax, [-20 20]);
view(ax, 3)
hold(ax, 'on')

Más respuestas (0)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by