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!
Voss
Voss 2024 年 5 月 21 日

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Objects についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by