Maximum

SCPI Commands :

READ:LTE:MEASurement<Instance>:MEValuation:MERRor:MAXimum
FETCh:LTE:MEASurement<Instance>:MEValuation:MERRor:MAXimum
CALCulate:LTE:MEASurement<Instance>:MEValuation:MERRor:MAXimum
class MaximumCls[source]

Maximum 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]: Magnitude error value for low EVM window position

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

calculate() CalculateStruct[source]
# SCPI: CALCulate:LTE:MEASurement<Instance>:MEValuation:MERRor:MAXimum
value: CalculateStruct = driver.lteMeas.multiEval.merror.maximum.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:MERRor:MAXimum
value: ResultData = driver.lteMeas.multiEval.merror.maximum.fetch()

Returns the values of the magnitude error 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 magnitude error values per SC-FDMA symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … See also ‘Square Magnitude Error, Phase Error’.

return:

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

read() ResultData[source]
# SCPI: READ:LTE:MEASurement<Instance>:MEValuation:MERRor:MAXimum
value: ResultData = driver.lteMeas.multiEval.merror.maximum.read()

Returns the values of the magnitude error 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 magnitude error values per SC-FDMA symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … See also ‘Square Magnitude Error, Phase Error’.

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.merror.maximum.clone()

Subgroups