plotting vectors vertically with matlab
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I've five vectors, that i want to show five vertical line in plot. How can i do? Please. Thank you all.
0 comentarios
Respuestas (1)
KSSV
el 27 de Jun. de 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 comentarios
Ver también
Categorías
Más información sobre Graphics Objects en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
