Quiver plotting arrow length

I want to plot a quiver plot of one arrow.
x=1;
y=1;
u=3;
v=4;
quiver(x,y,v,u)
I would expect that the arrow would start at point (1,1) and the length in the x direction would 3 while the length on the y direction would be 4.So the magnitude of the vector would be 5.
But this isn't the case. Can you explain me why? Thank you.

 Respuesta aceptada

the cyclist
the cyclist el 6 de Abr. de 2013
Editada: the cyclist el 6 de Abr. de 2013

2 votos

Two things:
(1) It looks like you swapped the u and v arguments compared to how you actually want them, so I think you actually want
quiver(x,y,u,v)
(2) There is an automatic scaling that occurs to the arrow (which is described in the documentation). You can turn off that scaling:
quiver(x,y,u,v,0)
I believe that will result in the plot you expect.

1 comentario

Giorgos Papakonstantinou
Giorgos Papakonstantinou el 6 de Abr. de 2013
Indeed I had swapped u and v values but if it wasn't your second comment I wouldn't know the answer. Thank you

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Vector Fields en Centro de ayuda y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by