add_series_inductor.m
来自「电子工业出版社出版的《射频电路设计》」· M 代码 · 共 14 行
M
14 行
function Add_series_inductor(ind)
% this function adds a description of the series inductor connected to the
% rest of the network
%
% USAGE:
% Add_series_inductor(2.5e-9)
% |
% +---- inductance (2.5nH)
%
global rf_Network;
rf_Network=cat(2,rf_Network,[1;ind;0;0;0]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?