Percentile

SCPI Commands

CALCulate:GSM:MEASurement<Instance>:MEValuation:MODulation:PERCentile
FETCh:GSM:MEASurement<Instance>:MEValuation:MODulation:PERCentile
READ:GSM:MEASurement<Instance>:MEValuation:MODulation:PERCentile
class Percentile[source]

Percentile commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Out_Of_Tolerance: int: decimal Percentage of measurement intervals / bursts of the statistic count ([CMDLINK: CONFigure:GSM:MEASi:MEValuation:SCOunt:MODulation CMDLINK]) exceeding the specified modulation limits. Range: 0 % to 100 %, Unit: %

  • Evm: enums.ResultStatus2: float Error vector magnitude percentile Range: 0 % to 100 %, Unit: %

  • Magnitude_Error: enums.ResultStatus2: float Magnitude error percentile Range: 0 % to 100 %, Unit: %

  • Phase_Error: enums.ResultStatus2: float Phase error percentile Range: 0 deg to 180 deg, Unit: deg

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Out_Of_Tolerance: int: decimal Percentage of measurement intervals / bursts of the statistic count ([CMDLINK: CONFigure:GSM:MEASi:MEValuation:SCOunt:MODulation CMDLINK]) exceeding the specified modulation limits. Range: 0 % to 100 %, Unit: %

  • Evm: float: float Error vector magnitude percentile Range: 0 % to 100 %, Unit: %

  • Magnitude_Error: float: float Magnitude error percentile Range: 0 % to 100 %, Unit: %

  • Phase_Error: float: float Phase error percentile Range: 0 deg to 180 deg, Unit: deg

calculate()CalculateStruct[source]
# SCPI: CALCulate:GSM:MEASurement<Instance>:MEValuation:MODulation:PERCentile
value: CalculateStruct = driver.multiEval.modulation.percentile.calculate()

Returns the 95th percentile results of the multi-evaluation measurement. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return

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

fetch()ResultData[source]
# SCPI: FETCh:GSM:MEASurement<Instance>:MEValuation:MODulation:PERCentile
value: ResultData = driver.multiEval.modulation.percentile.fetch()

Returns the 95th percentile results of the multi-evaluation measurement. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return

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

read()ResultData[source]
# SCPI: READ:GSM:MEASurement<Instance>:MEValuation:MODulation:PERCentile
value: ResultData = driver.multiEval.modulation.percentile.read()

Returns the 95th percentile results of the multi-evaluation measurement. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return

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