Scilab Function
Last update : 12/10/2007
uW_display_smith - Plot the smith chart in the current graphic window.
Calling Sequence
-
uW_display_smith(impedances,color)
Parameters
-
impedances
: vector of the normalized impedance to display. Most VNA use impedances=[.2 .5 1 2 5];
-
color
: numerical value of the color which be used to trace the smith chart.
Description
This function plot the smith chart into the current graphic window.
Examples
// Get the T11 parameter of a measured device
//
filename=tk_getfile("*.s2p");
S=uW_S2P_read(filename);
// Trace S11
plot2d(real(S.S11),imag(S.S11));
// Trace the smith chart
uW_display_smith([.2 .5 1 2 5],12);
See Also
uW_S2P_display
,
Authors
-
Tibault Reveyrand
www.reveyrand.fr
Used Function
None