Average

SCPI Commands :

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

Average commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

  • Low: List[float]: float Phase error value for low EVM window position Unit: deg

  • High: List[float]: float Phase error value for high EVM window position Unit: deg

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

Returns the values of the phase error bar graphs for the SC-FDMA symbols in the measured slot. The results of the current, average and maximum bar graphs can be retrieved. There is one pair of phase error values per SC-FDMA symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … See also ‘View 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:PERRor:AVERage
value: ResultData = driver.multiEval.perror.average.read()

Returns the values of the phase error bar graphs for the SC-FDMA symbols in the measured slot. The results of the current, average and maximum bar graphs can be retrieved. There is one pair of phase error values per SC-FDMA symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … See also ‘View Magnitude Error, Phase Error’.

return:

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