Main Content

listparam

List valid parameters for specified circuit object

Syntax

Description

example

listparam(h)lists the valid parameters for the specified circuit objecth.

Note

Before callinglistparamfunction, you must use theanalyzefunction to perform a frequency domain analysis for the circuit object.

Examples

collapse all

List the available parameters of analysis of a transmission line.

trl = rfckt.txline; f = [1e9:1.0e7:3e9]; analyze(trl,f); listparam(trl)
ans =28x1 cell{'S11' } {'S12' } {'S21' } {'S22' } {'GroupDelay'} {'GammaIn' } {'GammaOut' } {'VSWRIn' } {'VSWROut' } {'OIP3' } {'IIP3' } {'NF' } {'NFactor' } {'NTemp' } {'TF1' } {'TF2' } {'TF3' } {'Gt' } {'Ga' } {'Gp' } {'Gmag' } {'Gmsg' } {'GammaMS' } {'GammaML' } {'K' } {'Delta' } {'Mu' } {'MuPrime' }

Input Arguments

collapse all

RF circuit or data object, specified as an object handle.

Several parameters are available for all objects. When you importrfckt.amplifier,rfckt.mixer, orrfdata.dataobject specifications from a.p2dor.s2dfile, the list of valid parameters also includes any operating conditions from the file that have numeric values, such as bias.

This table describes the most commonly available parameters.

Parameter Description

S11,S12,S21,S22

LS11,LS12,LS21,LS22(Amplifier and mixer objects with multiple operating conditions only)

S-parameters
GroupDelay Group delay
GammaIn,GammaOut Input and output reflection coefficients
VSWRIn,VSWROut Input and output voltage standing-wave ratio
IIP3,OIP3(Amplifier and mixer objects only) Third-order intercept point
NF 噪声图
TF1 Ratio of the load voltage to the output voltage of the source when the input port is conjugate matched
TF2 Ratio of load voltage to the source voltage
  • Gt

  • Ga

  • Gp

  • Gmag

  • Gmsg

  • Transducer power gain

  • Available power gain

  • Operating power gain

  • Maximum available power gain

  • Maximum stable gain

GammaMS,GammaML Source and load reflection coefficients for simultaneous conjugate match
K,Mu,MuPrime Stability factor
Delta Stability condition

Version History

Introduced before R2006a