s_point.m
来自「射频电路设计:理论与应用:theory and applications 全部源」· M 代码 · 共 18 行
M
18 行
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 + =
减小字号Ctrl + -
显示快捷键?