mustripw.m
来自「射频方面的资料」· M 代码 · 共 19 行
M
19 行
% MUSTRIPW Calculate the width of a microstrip line from the effective width required
%
% [W] = MUSTRIPW (Weff, T, H)
% Weff is the effective width
% T is the thickness
% H is the height
%
function [W] = mustripw (Weff, T, H)
W = Weff - T/pi*(1+ln(2*H/T));
if W < h/2/pi,
W = T/pi*LambertW(1/4*exp((pi*Weff-T)/T));
end;
if W < 2*T,
error('Width too narrow');
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?