Result

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:OVERview
CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:OSCilloscope
CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:FFT
class ResultCls[source]

Result commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_fft() bool[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:FFT
value: bool = driver.configure.afRf.measurement.multiEval.result.get_fft()

Enables or disables the measurement of the AF spectrum results.

return:

fft_enable: OFF | ON

get_oscilloscope() bool[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:OSCilloscope
value: bool = driver.configure.afRf.measurement.multiEval.result.get_oscilloscope()

Enables or disables the measurement of the AF oscilloscope results.

return:

osc_enable: OFF | ON

get_overview() OverviewType[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:OVERview
value: enums.OverviewType = driver.configure.afRf.measurement.multiEval.result.get_overview()

Switches between the ‘AF Spectrum’ and the ‘AF Oscilloscope’ diagram if ‘AF Spectrum’ and ‘AF Oscilloscope’ are enabled results. If no result is enabled, the remote command returns NONE.

return:

type_py: NONE | FFT | OSCilloscope

set_fft(fft_enable: bool) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:FFT
driver.configure.afRf.measurement.multiEval.result.set_fft(fft_enable = False)

Enables or disables the measurement of the AF spectrum results.

param fft_enable:

OFF | ON

set_oscilloscope(osc_enable: bool) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:OSCilloscope
driver.configure.afRf.measurement.multiEval.result.set_oscilloscope(osc_enable = False)

Enables or disables the measurement of the AF oscilloscope results.

param osc_enable:

OFF | ON

set_overview(type_py: OverviewType) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:RESult:OVERview
driver.configure.afRf.measurement.multiEval.result.set_overview(type_py = enums.OverviewType.FFT)

Switches between the ‘AF Spectrum’ and the ‘AF Oscilloscope’ diagram if ‘AF Spectrum’ and ‘AF Oscilloscope’ are enabled results. If no result is enabled, the remote command returns NONE.

param type_py:

NONE | FFT | OSCilloscope