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

3 ビュー (過去 30 日間)
David keenan
David keenan 2011 年 10 月 7 日
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 Center および File ExchangeVector Fields についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by