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!
