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

2 次查看(过去 30 天)
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.

采纳的回答

the cyclist
the cyclist 2011-10-7
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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Vector Fields 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by