Refactoring

This commit is contained in:
2023-03-20 22:50:56 +04:00
parent 8958bf5204
commit 74231472c9
32 changed files with 240 additions and 201 deletions

4
Matlab/bessel.m Normal file
View File

@@ -0,0 +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;
end