Add xyz arrows in plot

33 ビュー (過去 30 日間)
Dion Theunissen
Dion Theunissen 2021 年 4 月 8 日
回答済み: KSSV 2021 年 4 月 8 日
Hi,
I have a plot like this:
Now i want to add in the middle of the plot some xyz arrows so that i can show how the lines are going, something like this:
Can anyone help me how to fix this?
Cheers.

採用された回答

KSSV
KSSV 2021 年 4 月 8 日
% points
x = rand(50,1) ;
y = rand(50,1) ;
z = rand(50,1) ;
% vectors
u = rand(50,1)/10 ;
v = rand(50,1)/10 ;
w = rand(50,1)/10 ;
%
O = zeros(size(x)) ;
% plot
plot3(x,y,z,'.-r')
hold on
quiver3(x,y,z,u,O,O,'r')
quiver3(x,y,z,O,v,O,'b')
quiver3(x,y,z,O,O,w,'g')

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by