Average

SCPI Commands :

READ:LTE:MEASurement<Instance>:MEValuation:EVMagnitude:AVERage
FETCh:LTE:MEASurement<Instance>:MEValuation:EVMagnitude:AVERage
CALCulate:LTE:MEASurement<Instance>:MEValuation:EVMagnitude:AVERage
class AverageCls[source]

Average commands group definition. 5 total commands, 1 Subgroups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: No parameter help available

  • Low: List[enums.ResultStatus2]: No parameter help available

  • High: List[enums.ResultStatus2]: No parameter help available

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Low: List[float]: EVM value for low EVM window position

  • High: List[float]: EVM value for high EVM window position

calculate() CalculateStruct[source]
# SCPI: CALCulate:LTE:MEASurement<Instance>:MEValuation:EVMagnitude:AVERage
value: CalculateStruct = driver.lteMeas.multiEval.evMagnitude.average.calculate()

No command help available

return:

structure: for return value, see the help for CalculateStruct structure arguments.

fetch() ResultData[source]
# SCPI: FETCh:LTE:MEASurement<Instance>:MEValuation:EVMagnitude:AVERage
value: ResultData = driver.lteMeas.multiEval.evMagnitude.average.fetch()

Returns the values of the EVM RMS diagrams for the SC-FDMA symbols in the measured slot. The results of the current, average and maximum diagrams can be retrieved. There is one pair of EVM values per SC-FDMA symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … See also ‘Square EVM’.

return:

structure: for return value, see the help for ResultData structure arguments.

read() ResultData[source]
# SCPI: READ:LTE:MEASurement<Instance>:MEValuation:EVMagnitude:AVERage
value: ResultData = driver.lteMeas.multiEval.evMagnitude.average.read()

Returns the values of the EVM RMS diagrams for the SC-FDMA symbols in the measured slot. The results of the current, average and maximum diagrams can be retrieved. There is one pair of EVM values per SC-FDMA symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … See also ‘Square EVM’.

return:

structure: for return value, see the help for ResultData structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.lteMeas.multiEval.evMagnitude.average.clone()

Subgroups