add_trans_line.m
来自「射频电路设计-理论与应用(光盘)。射频方面的东东」· M 代码 · 共 19 行
M
19 行
function Add_trans_line(theta_deg,freq_0,line_Z0)
% this function adds a description of the transmission line connected to the
% rest of the network
%
% USAGE:
% Add_trans_line(45, 1e9, 75)
% | | |
% | | +---- characteristic impedance of the line
% | |
% | +--------- frequency at which electrical length
% | of the transmission line is specified
% |
% +------------- electrical length of the line (beta*length)
%
global rf_Network;
rf_Network=cat(2,rf_Network,[3;theta_deg;0;freq_0;line_Z0]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?