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.

Answers (1)

Vec = rand(5,2) ;
N = size(Vec,1) ;
x = zeros(N,1) ;
y = 1:N ;
quiver(x,y,Vec(:,1),Vec(:,2),1)

2 Comments

Thank You KSSV. But I have already decided and got the result.
can you share the code for plotting vectors vertically like this?

Sign in to comment.

Categories

Find more on Graphics Objects in Help Center and File Exchange

Asked:

on 26 Jun 2018

Commented:

on 3 Dec 2019

Community Treasure Hunt

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

Start Hunting!