📄 s_point.m
字号:
function s_Point(Z)
%
% This function plots a point on the Smith Chart
% It is assume that global variable Z0 has
% already been set (see Set_Z0)
%
% usage: s_Point(30+j*20)
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design: Theory and Practice"
%
global Z0;
hold on;
Gamma=(Z-Z0)/(Z+Z0);
plot(real(Gamma),imag(Gamma),'ro');
hold off;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -