Bonjour, Trying to get a 3D (or surface) plot of a point spread function (Bessel function of order one) using PyPlot:
In[ ]: v(tx, ty) = sqrt((1600*pi*tx/(41253*l))^2 +
(1600*pi*ty/(41253*l))^2)
In[ ]: o(tx, ty) = (2*besselj1(v(tx,ty)) / v(tx,ty))^2
In[ ]: using PyPlot
using PyCall
Do you know if plt.plot is the good way to go? Not able to use plot3d or
plot3D with Julia (PyPlot)!
Do you know if such command is available? Thanks, G.
