Split up files
This commit is contained in:
9
Matlab/coefficients.m
Normal file
9
Matlab/coefficients.m
Normal file
@@ -0,0 +1,9 @@
|
||||
function reflectivity = R(th, psi)
|
||||
reflectivity = (tan(th - th_r(th)).^2 ./ tan(th + th_r(th)).^2) .* ...
|
||||
cos(psi).^2 + ...
|
||||
(sin(th - th_r(th)).^2 ./ sin(th + th_r(th)).^2) .* sin(psi).^2;
|
||||
end
|
||||
|
||||
function transparency = T(th, psi)
|
||||
transparency = 1 - R(th, psi);
|
||||
end
|
||||
Reference in New Issue
Block a user