Average

SCPI Commands :

READ:NRSub:MEASurement<Instance>:SRS:EVMSymbol:PEAK:AVERage
FETCh:NRSub:MEASurement<Instance>:SRS:EVMSymbol:PEAK:AVERage
Commands in total: 2
Subgroups: 0
Direct child commands: 2
class ResultData[source]

Response structure. Fields:

  • 1 Reliability: int: ‘Reliability indicator’

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

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

fetch() ResultData[source]
# FETCh:NRSub:MEASurement<Instance>:SRS:EVMSymbol:PEAK:AVERage
value: ResultData = driver.nrSubMeas.srs.evmSymbol.peak.average.fetch()

Returns the values of the peak EVM vs symbol diagrams. The results of the current, average and maximum diagrams can be retrieved. There is one pair of EVM values per measured OFDM symbol: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … You can query the number of returned pairs via method RsCMPX_NrFr1Meas.nrSubMeas.srs.modulation.nsymbol.fetch() . See also ‘Square EVM vs Symbol’.

Returns:

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

read() ResultData[source]
# READ:NRSub:MEASurement<Instance>:SRS:EVMSymbol:PEAK:AVERage
value: ResultData = driver.nrSubMeas.srs.evmSymbol.peak.average.read()

Returns the values of the peak EVM vs symbol diagrams. The results of the current, average and maximum diagrams can be retrieved. There is one pair of EVM values per measured OFDM symbol: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1, … You can query the number of returned pairs via method RsCMPX_NrFr1Meas.nrSubMeas.srs.modulation.nsymbol.fetch() . See also ‘Square EVM vs Symbol’.

Returns:

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