g2z.m

来自「Electromagnetic Waves And Antenna (matla」· M 代码 · 共 24 行

M
24
字号
% 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 + =
减小字号Ctrl + -
显示快捷键?