Quiver arrow doesn't show at the right place

2 visualizaciones (últimos 30 días)
Dirk te Brake
Dirk te Brake el 22 de Mzo. de 2023
Comentada: Dirk te Brake el 22 de Mzo. de 2023
o = [0,0];
v = [3 10];
quiver(o(1), o(2), v(1), v(2),'k','LineWidth',2);
hold on
plot(v(1),v(2),"o")
xlim([(-1) (11)]);
ylim([(-1) (11)]);
grid on
The arrow is pointing towards [3, 10] but ends around [2.75, 9] while it should've stop at the red dot, right? Or am i wrong?

Respuesta aceptada

Simon Chan
Simon Chan el 22 de Mzo. de 2023
By default, AutoScale is set to on and AutoScaleFactor is 0.9.
So you may set AutoScale to off or set AutoScaleFactor to 1.
  1 comentario
Dirk te Brake
Dirk te Brake el 22 de Mzo. de 2023
I can understand why an autoscalefactor option is usefull but why set it to 0.9 by default? Anyway thank you!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Vector Fields en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by