show

Display RF budget object in RF Budget Analyzer app

Syntax

show(rfobj)

Description

show(rfobj) opens an RF Budget Analyzer app to display a clone of the RF budget object.

Input Arguments

expand all

RF budget analysis object, specified as a object handle.

Examples

expand all

Create an RF budget object.

a = amplifier('Name','LNA','Gain',4);
m = modulator('ConverterType','Up','LO',100e6,'Name','Mod');
r = rfelement('Gain',10,'NF',3,'OIP3',2);
n = nport('passive.s2p');

Calculate the RF budget analysis.

b = rfbudget([a m r n],2.1e9,-30,10e6);

Display the RF budget for exploration in the RF Budget Analyzer app.

show(b)

Introduced in R2017a