代码搜索:SMITH
找到约 2,853 项符合「SMITH」的源代码
代码结果 2,853
www.eeworm.com/read/385008/8824414
m smith.m
function smith(z0, rcircles, xcircles, gcircles, bcircles)
%SMITH Draw a Smith chart.
% SMITH(Z0, RCIRCLES, XCIRCLES, GCIRCLES, BCIRCLES) has the following
% parameters:
% - Z0: the normalis
www.eeworm.com/read/383745/8921760
m smith.m
%smith
function ui2(action)
if nargin==0,
action='initialize';
end
switch(action) %初始化
case'initialize'
axes('position',[0 0.26 0.8 0.7]);
%%
www.eeworm.com/read/378919/9213124
m smith.m
function hpol = smith(zeta,line_style)
%SMITH Smith chart plot.
% SMITH(ZETA) makes a plot of ZETA using a conformal (Moebius)
% mapping, i.e. in Smith chart coordinates.
% It is assumed th
www.eeworm.com/read/458661/7291864
m smith.m
% smith.m - draw basic Smith chart
%
% Usage: smith(n)
% smith (equivalent to n=3)
%
% n = 1,2,3,4, number of resistance/reactance circles (default n=3)
%
% notes: uses smitchcir to d
www.eeworm.com/read/449679/7498138
dat smith.dat
'format Smith Chart scales:
'Z value: from: to: (if neg.: do not print Z value)
Z 0.00 0 99
Z 0.02 0 -0.5
Z 0.04 0 -0.5
Z 0.05 0.5 -1
Z 0.06 0 -0.5
Z 0.08 0 -0.5
Z 0.10 0 2
Z 0.12 0 -
www.eeworm.com/read/439557/7706066
fig smith.fig
www.eeworm.com/read/399899/7827475
m smith.m
function varargout = Smith(varargin)
% SMITH M-file for Smith.fig
% SMITH, by itself, creates a new SMITH or raises the existing
% singleton*.
%
% H = SMITH returns the handle to a
www.eeworm.com/read/399899/7827476
fig smith.fig
www.eeworm.com/read/321442/13404827
m smith.m
x=1;
r=1;
u=(r.^2+x.^2-1)/(r.^2+2*r+1+x.^2);
v=(2*x)/(r.^2+2*r+1+x.^2);
tr=2*pi*(0:0.01:1);
l=sqrt(u^2+v^2);
plot(l*cos(tr),l*sin(tr),'m');
hold on
www.eeworm.com/read/317065/13510878