add_series_oc_stub.m

来自「射频电路设计-理论与应用(光盘)。射频方面的东东」· M 代码 · 共 19 行

M
19
字号
function Add_series_oc_stub(theta_deg,freq_0,line_Z0)
% this function adds a description of the open-circuit stub connected to the
% rest of the network in series
%
% USAGE:
% Add_series_oc_stub(45, 1e9, 75)
%                     |   |    |
%                     |   |    +---- characteristic impedance of the stub
%                     |   |
%                     |   +--------- frequency at which electrical length 
%                     |              of the transmission line is specified
%                     |
%                     +------------- electrical length of the stub (beta*length)
%

global rf_Network;

rf_Network=cat(2,rf_Network,[5;theta_deg;0;freq_0;line_Z0]);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?