필터 지우기
필터 지우기

how to define 3D coordinates in matlab?

조회 수: 9 (최근 30일)
Sat m
Sat m 2013년 3월 15일
i wish to define 2 3D coordinates say (X1, Y1, Z1) and (X2, Y2, Z2). how to define these points?
if i write
(X1, Y1, Z1)= (5, 6, 2);
then it shows parse error . please let me know

채택된 답변

Youssef  Khmou
Youssef Khmou 2013년 3월 15일
편집: Youssef Khmou 2013년 3월 15일
hi,
one variable can store n dimensional coordinates :
P=[5 6 2];
or you can split them into n parts :
p1=5;
p2=6;
p3=2;
plot3(p1,p2,p3,'*');
plot3(P(1),P(2),P(3),'*')

추가 답변 (0개)

카테고리

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