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

1 次查看(过去 30 天)
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'])

采纳的回答

MathWorks Support Team
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)')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Visualization and Data Export 的更多信息

标签

尚未输入任何标签。

产品


版本

R2008a

Community Treasure Hunt

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

Start Hunting!

Translated by