Way to plot multiple lines in 3d specifying start and end point?

Is there a way to plot multiple lines on 3 axis and specify the start and end point
This is a crude example but something like Line Start (x,y,z) Line To (x,y,z)

 採用された回答

KSSV
KSSV 2018 年 12 月 11 日
編集済み: KSSV 2018 年 12 月 11 日

2 投票

P0 = rand(7,3) ;
P1 = rand(7,3) ;
X = [P0(:,1) P1(:,1)] ;
Y = [P0(:,2) P1(:,2)] ;
Z = [P0(:,3) P1(:,3)] ;
plot3(X',Y',Z')
hold on
plot3(X',Y',Z','.')

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLine Plots についてさらに検索

製品

リリース

R2018b

質問済み:

2018 年 12 月 11 日

編集済み:

2018 年 12 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by