totally incorrect calculation of matlab

I used quiver to plot a vector field. the code was :
[x,y]=meshgrid(0:1:20);
quiver(x,y,x^3-3*x*y,y^3-3*x^2*y)
However the results were completely different from expected, showing downward arrow at x=0, which should have been upward. Other arrows didn't match either.

 Respuesta aceptada

Mischa Kim
Mischa Kim el 10 de Dic. de 2014
Editada: Mischa Kim el 10 de Dic. de 2014
Jaein, use instead
[x,y] = meshgrid(0:1:20);
quiver(x,y,x.^3-3*x.*y,y.^3-3*x.^2.*y) % note the dot-notation

Más respuestas (1)

Categorías

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

Productos

Etiquetas

Preguntada:

el 10 de Dic. de 2014

Respondida:

el 10 de Dic. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by