주요 콘텐츠

rfchain.plot

Plot RF chain cascaded analysis results

Description

plot(obj) displays a plot of the cascaded gain, noise figure, OIP3 and IIP3 values of the RF chain object obj.

example

h = plot(obj) returns a column vector of line series handles, where h contains one handle per plotted line.

Examples

collapse all

Assign stage-by-stage values of gain, noise figure, OIP3 and stage names.

g = [11 -3 7];
nf = [25 3 5];
oip3 = [30 Inf 10];
nm = {'amp1','filt1','lna1'};

Create an RF chain object.

rfch = rfchain(g,nf,oip3,'Name',nm);

Plot the results.

plot(rfch)

Figure contains an axes object. The axes object with title Cascade Analysis, ylabel dB contains 7 objects of type line, text. These objects represent Gain, Noise Figure, OIP3, IIP3.

Input Arguments

collapse all

RF chain object, specified as an rfchain object.

Output Arguments

collapse all

Line series handle, returned as a column vector, that contains one handle per plotted line.

Version History

Introduced in R2014b