TypePy
SCPI Command :
[SENSe]:AVERage:TYPE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() AverageModeD[source]
# [SENSe]:AVERage:TYPE value: enums.AverageModeD = driver.applications.k10Xlte.sense.average.typePy.get()
Selects the trace averaging mode.
- Returns:
mode: LOGarithmic The logarithmic power values are averaged. LINear The power values are averaged before they are converted to logarithmic values. POWer The power level values are converted into unit Watt prior to averaging. After the averaging, the data is converted back into its original unit.
- set(mode: AverageModeD) None[source]
# [SENSe]:AVERage:TYPE driver.applications.k10Xlte.sense.average.typePy.set(mode = enums.AverageModeD.LINear)
Selects the trace averaging mode.
- Parameters:
mode – LOGarithmic The logarithmic power values are averaged. LINear The power values are averaged before they are converted to logarithmic values. POWer The power level values are converted into unit Watt prior to averaging. After the averaging, the data is converted back into its original unit.