Why are there no examples in the documentation of the PLOT function for "rfckt.cascade" objects in the RF Toolbox 2.3 (R2008a)?

1 view (last 30 days)
I would like to see examples with the documentation of the PLOT function for "rfckt" objects. Here is the link to the documentation page:
web([docroot,'/toolbox/rf/plot.html'])

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
Examples on the PLOT function of the "rfckt.cascade" object are missing in the documentation.
Here is a basic example on how to use the plot the analysis results (S-parameters) of a tee circuit:
R1 = rfckt.seriesrlc('R',26); %Series
R2 = rfckt.shuntrlc('R',35); %Shunt
R3 = rfckt.seriesrlc('R',26); %Series
tee=rfckt.cascade; % Creating a cascade circuit
tee.Ckts={R1,R2,R3};
freq=[1e6,2e6]; %Assigning frequency for analysis
analyze(tee,freq);
% To plot the s21 and s11 parameters on a Linear scale
plot(tee,'s21','s11','Magnitude (linear)')

More Answers (0)

Categories

Find more on Visualization and Data Export in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2008a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!