add_shunt_capacitor.m

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

M
14
字号
function Add_shunt_capacitor(cap)
% this function adds a description of the shunt capacitor connected to the
% rest of the network
%
% USAGE:
% Add_shunt_capacitor(2.5e-12)
%                      |
%                      +---- capacitance (2.5pF)
%

global rf_Network;

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

⌨️ 快捷键说明

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