필터 지우기
필터 지우기

how can i draw a 3-D figure?

조회 수: 1 (최근 30일)
masoud jiryaei
masoud jiryaei 2020년 1월 21일
편집: KALYAN ACHARJYA 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