📄 g2z.m
字号:
% g2z.m - reflection coefficient to impedance transformation
%
% Usage: Z = g2z(Gamma,Z0)
% Z = g2z(Gamma) (equivalent to Z0=1, i.e, normalized impedances)
%
% Gamma = vector of reflection coefficients
% Z0 = line impedance
%
% Z = vector of impedances
%
% notes: if Gamma=1, it returns Z=inf
%
% S. J. Orfanidis - 1999 - www.ece.rutgers.edu/~orfanidi/ewa
function Z = g2z(Gamma,Z0)
if nargin==0, help g2z; return; end
if nargin==1, Z0=1; end
Z = Z0*(1+Gamma)./(1-Gamma);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -