plotting vectors vertically with matlab
古いコメントを表示
I've five vectors, that i want to show five vertical line in plot. How can i do? Please. Thank you all.
回答 (1 件)
KSSV
2018 年 6 月 27 日
Vec = rand(5,2) ;
N = size(Vec,1) ;
x = zeros(N,1) ;
y = 1:N ;
quiver(x,y,Vec(:,1),Vec(:,2),1)
2 件のコメント
Nga Wai
2018 年 6 月 27 日
Hanna Weiss
2019 年 12 月 3 日
can you share the code for plotting vectors vertically like this?
カテゴリ
ヘルプ センター および File Exchange で Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
