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/uniform.m Normal file
View File

@@ -0,0 +1,4 @@
% Beam with uniform distribution
function u = uniform(r, w0, r_max, P)
u = P / (pi*r_max^2);
end