- /
-
Bessels
on 20 Oct 2021
- 3
- 10
- 4
- 0
- 154
[x,y]=meshgrid(-10:.01:10);
b=@(p,q)besselj(0,(((x-p).^2+(y-q).^2).^0.5));
mesh(x,y,b(0,0)+b(1,1)-2*b(-1,-1))
colormap(gca,'colorcube')
view(0,90)
axis equal off