Average

SCPI Commands :

READ:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:AVERage
FETCh:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:AVERage
class AverageCls[source]

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator’

  • Frequency: List[float]: Frequency of the detected peak

  • Level: List[float]: Level of the detected peak

fetch() ResultData[source]
# SCPI: FETCh:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:AVERage
value: ResultData = driver.gprf.measurement.fftSpecAn.peaks.average.fetch()

Returns the results of the peak search in the spectrum diagram. Separate commands retrieve results for the current trace and for the average trace. The results are returned in the following order: <Reliability>, {<Frequency>, <Level>}marker 0, …, {<Frequency>, <Level>}marker 4

return:

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

read() ResultData[source]
# SCPI: READ:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:AVERage
value: ResultData = driver.gprf.measurement.fftSpecAn.peaks.average.read()

Returns the results of the peak search in the spectrum diagram. Separate commands retrieve results for the current trace and for the average trace. The results are returned in the following order: <Reliability>, {<Frequency>, <Level>}marker 0, …, {<Frequency>, <Level>}marker 4

return:

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