No BSD License
-
scArc(Point, LinCol)
-
scConCirc(r,LinCol)
-
scDraw(r, x, ChColor, xR, xL,...
scDraw : Draws a blank smith chart
-
scMatchCirc(LinCol)
scMatchCirc : Draws the match-circle on smith chart
-
scMove(Pos1,length,LinCol)
scMove : Move along the transmission line on smith chart to transform impedance
-
scPOI(r, x)
scPOI: calculates the point of intersection of the circles defining r and x
-
scRay(point, LinCol)
scRay : Draws a ray emanating from the origin towards a given point on smith chart
-
y=scInv(z, LinCol)
scInv : Inverts a given impedance (admitance) by mirroring it about the origin
-
View all files
from
smithchart
by Mohammad Ashfaq
A collection of files capable of drawing a standard colored smith chart including labels and scales
|
| scMatchCirc(LinCol)
|
function scMatchCirc(LinCol)
%scMatchCirc : Draws the match-circle on smith chart
%
% SYNOPSIS:
% This function draws a circle for impedance matching purposes on the smith
% chart. Such a circle has its center at the point (-0.5, 0) and has a radius
% equal to 0.5
%
% See also scDraw, scInv, scMove, scConCirc
%
% SYNTAX:
% scMatchCirc(LinCol)
%
% INPUT ARGUMENTS:
% LinCol : Color of the matching circle, default = 'm', magenta
%
% OUTPUT ARGUMENT:
% none
%
%
% EXAMPLE:
% The Command sequence
% scDraw;
% scMatchCirc;
% will draw a blank smith chart and draw a circle having center at the
% at the point (-0.5, 0) and has a radius equal to 0.5. This circle
% will be the locus of all the points having admittances reciprocal to the
% impedances on the circle r = 1 of the smith chart.
%
% Mohammad Ashfaq - (31-05-2000)
% Mohammad Ashfaq - (13-04-2006) Modified (example included)
%
if nargin == 0
LinCol = 'm';
end
x = -1:0.01:0;
y = real(sqrt(0.5^2-(x+.5).^2));
plot(x, y, LinCol);
plot(x, -y, LinCol);
|
|
Contact us at files@mathworks.com