How do I plot A=sin(pi*y/2)i - sin(pi*x/2)j using QUIVER

How do I plot A=sin(pi*y/2)i - sin(pi*x/2)j (where i unit vector in x, j unit vector in y, A resultant vector. x range +/-0.5 ; y range +/-0.5 ). using QUIVER.

 Akzeptierte Antwort

the cyclist
the cyclist am 7 Okt. 2011
x = -0.5:0.05:0.5;
y = -0.5:0.05:0.5;
[xx,yy] = meshgrid(x,y);
Ai = sin(pi*yy/2);
Aj = - sin(pi*xx/2);
quiver(xx,yy,Ai,Aj)

Weitere Antworten (0)

Kategorien

Mehr zu Vector Fields finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by