주요 콘텐츠

rfchain.worksheet

RF chain cascaded analysis table

Description

worksheet(obj) displays a table of values for the gain, noise figure, OIP3, and IIP3 of the RF chain object obj. The table contains both the original input values and the calculated cascade values.

example

fig = worksheet(obj) returns a figure handle of the table.

Examples

collapse all

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

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

Create an RF chain object.

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

View results in a worksheet.

worksheet(rfch)

Figure contains an object of type uitable.

Input Arguments

collapse all

RF chain object, specified as an rfchain object.

Output Arguments

collapse all

Figure handle of the table, returned as a scalar handle object, that contains the properties of the RF chain object.

Version History

Introduced in R2014b