4 lines
94 B
Matlab
4 lines
94 B
Matlab
% Beam with uniform distribution
|
|
function u = uniform(r, w0, r_max)
|
|
u = ones(size(r));
|
|
end |