mustripweff.m

来自「用Matlab将Radio Frequency(RF)收发模块进行模型化。非常少」· M 代码 · 共 21 行

M
21
字号
% MUSTRIPWEFF  Calculate the effective width of a microstrip line
% 
%    [Weff] = MUSTRIPWEFF (W, T, H) 
%      W is the width
%      T is the thickness
%      H is the height
% 

function [Weff] = mustripweff (W, T, H)

if (W < 2*T),
  error('Width is too thin');
end;

if (W > H/2/pi),
  X = H;  
else
  X = 2*pi*W;
end;

Weff = W + T/pi*(1 + log(2*X/T));

⌨️ 快捷键说明

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