www.gusucode.com > rf 案例源码程序 matlab代码 > rf/SmithChartExample.m

    %% Smith chart
%% Plot Data on a Smith Chart

% Copyright 2015 The MathWorks, Inc.

smithdata = 0.1+j*[1:1000]*0.001;
smithchart(smithdata);
%% Convert Data to Coordinate System
smithdata_trans = z2gamma(smithdata,1);
smithchart(smithdata_trans);