tfresnel.m
来自「wireless propagation in microcells and p」· M 代码 · 共 14 行
M
14 行
function [tpar,tper]=tfresnel(ang_inc,ep)
% DESCRIPTION
% This function calculates the reflection coefficients (parallel and perpendicular)
% INPUTS
% ang_inc: incident angle
% ep: parameter for the Fresnel function
% OUTPUT
% tpar: parallel penetration coefficient
% tper: perpendicular penetration coefficient
tper=2.*cos(ang_inc)./(cos(ang_inc)+sqrt(ep-sin(ang_inc).^2));
tpar=2.*sqrt(ep).*cos(ang_inc)./(ep.*cos(ang_inc)+sqrt(ep-sin(ang_inc).^2));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?