add_shunt_impedance.m
来自「射频电路设计:理论与应用:theory and applications 全部源」· M 代码 · 共 18 行
M
18 行
function Add_shunt_impedance(imp)
% this function adds a description of the constant impedance connected to the
% rest of the network in shunt configuration
%
% USAGE:
% Add_shunt_impedance(25+j*30)
% |
% +---- 25+j*30 Ohm impedance
%
% Add_shunt_impedance(75)
% |
% +---- 75 Ohm resistor
%
global rf_Network;
rf_Network=cat(2,rf_Network,[0;imp;1;0;0]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?