Plotting Lines and Points in 3D

조회 수: 4 (최근 30일)
DJ V
DJ V 2024년 5월 21일
댓글: Voss 2024년 5월 21일
I need to learn how to plot lines and points in 3D. Can someone please provide an example in Matlab? Thank you.

채택된 답변

Voss
Voss 2024년 5월 21일
A = [1 -3 7];
B = [0 2 -6];
C = [0.5 -1 5];
% plot a line from A to B
v = [A; B];
plot3(v(:,1),v(:,2),v(:,3))
box on
grid on
xlabel('x')
ylabel('y')
zlabel('z')
% plot the point C
hold on
plot3(C(1),C(2),C(3),'o')
  댓글 수: 8
DJ V
DJ V 2024년 5월 21일
The man with all the answers!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Objects에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by