Main Content

gammams

Calculate source reflection coefficient of two-port network

Description

example

coefficient = gammams(s_params) calculates the source reflection coefficient of a two-port network required for simultaneous conjugate match.

example

coefficient = gammams(hs) calculates the source reflection coefficient of the two-port network represented by the S-parameter object hs.

Examples

collapse all

Calculate the source reflection coefficient using network data from a file.

ckt = read(rfckt.amplifier,'default.s2p');
s_params = ckt.NetworkData.Data;
coefficient = gammams(s_params)
coefficient = 191×1 complex

  -0.7247 + 0.4813i
  -0.7324 + 0.4723i
  -0.7401 + 0.4632i
  -0.7478 + 0.4541i
  -0.7554 + 0.4449i
  -0.7630 + 0.4357i
  -0.7704 + 0.4264i
  -0.7778 + 0.4170i
  -0.7850 + 0.4075i
  -0.7921 + 0.3980i
      ⋮

Define a S-parameters object specified from a file.

hs = sparameters('default.s2p');

Calculate the source reflection coefficient using gammams function.

coefficient = gammams(hs)
coefficient = 191×1 complex

  -0.7247 + 0.4813i
  -0.7324 + 0.4723i
  -0.7401 + 0.4632i
  -0.7478 + 0.4541i
  -0.7554 + 0.4449i
  -0.7630 + 0.4357i
  -0.7704 + 0.4264i
  -0.7778 + 0.4170i
  -0.7850 + 0.4075i
  -0.7921 + 0.3980i
      ⋮

Input Arguments

collapse all

Two-port S-parameters, specified as a complex 2-by-2-by-M array. M is the number of two-port S-parameters.

Data Types: double

Two-port network, specified as an S-parameter object.

Data Types: function_handle

Output Arguments

collapse all

Source reflection coefficient, returned as a M element complex vector.

Algorithms

The function calculates coefficient using the equation

ΓMS=B1±B124|C12|2C1

where

B1=1+|S112||S222||Δ2|C1=S11ΔS22*Δ=S11S22S12S21

Version History

Introduced before R2006a