how can i draw a 3-D figure?

4 次查看(过去 30 天)
masoud jiryaei
masoud jiryaei 2020-1-21
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.

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020-1-21
编辑:KALYAN ACHARJYA 2020-1-21
x=rand(1,121);
y=rand(1,121);
z=rand(1,121);
plot3(x,y,z);
grid on;
More 3D plots, Documentation here

类别

Help CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by