how can i draw a 3-D figure?

4 visualizaciones (últimos 30 días)
masoud jiryaei
masoud jiryaei el 21 de En. de 2020
Editada: KALYAN ACHARJYA el 21 de En. de 2020
i have these coordinates in x,y,z :
x=[1*121]
y=[1*121]
z=[1*121]
now i want to draw its figure in matlab.

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 21 de En. de 2020
Editada: KALYAN ACHARJYA el 21 de En. de 2020
x=rand(1,121);
y=rand(1,121);
z=rand(1,121);
plot3(x,y,z);
grid on;
More 3D plots, Documentation here

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by