plotting vectors vertically with matlab
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I've five vectors, that i want to show five vertical line in plot. How can i do? Please. Thank you all.
0 Commenti
Risposte (1)
KSSV
il 27 Giu 2018
Vec = rand(5,2) ;
N = size(Vec,1) ;
x = zeros(N,1) ;
y = 1:N ;
quiver(x,y,Vec(:,1),Vec(:,2),1)
2 Commenti
Vedere anche
Categorie
Scopri di più su Graphics Objects in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
