- /
-
wavetest 0910
on 31 Oct 2021
- 2
- 18
- 3
- 0
- 178
[X,Y] = meshgrid(-pi:pi/32:pi,-pi:pi/24:pi);
U = 2*sin(2*Y).*X;
V = 2*cos(2*X);
contour(X,Y,U+V,100,'-.')
hold on
q=quiver(X,Y,U,V,'r');
q.ShowArrowHead='off';
%q.LineSpec='dr';
q.LineWidth=0.5;
axis off
hold on