add_shunt_inductor.m

来自「射频电路设计:理论与应用:theory and applications 全部源」· M 代码 · 共 14 行

M
14
字号
function Add_shunt_inductor(ind)
% this function adds a description of the shunt inductor connected to the
% rest of the network
%
% USAGE:
% Add_shunt_inductor(2.5e-9)
%                      |
%                      +---- inductance (2.5nH)
%

global rf_Network;

rf_Network=cat(2,rf_Network,[1;ind;1;0;0]);

⌨️ 快捷键说明

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