Refactored Python files, fixed errors

This commit is contained in:
2023-03-21 23:53:37 +04:00
parent 37c2c9c410
commit 78916d0ec9
5 changed files with 170 additions and 275 deletions

View File

@@ -1,4 +1,4 @@
% Bessel beam
function b = bessel(r, r_max, w0, P)
b = bessel_peak(r_max, w0, P) * besselj(0, 2.405/w0 * r).^2;
b = besselj(0, 2.405/w0 * r).^2;
end