State

SCPI Command :

TRACe:IQ:AVERage[:STATe]
class StateCls[source]

State commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get() bool[source]
# SCPI: TRACe:IQ:AVERage[:STATe]
value: bool = driver.applications.iqAnalyzer.trace.iq.average.state.get()

This command turns averaging of the I/Q data on and off. Before you can use the command you have to turn the I/Q data acquisition on with method RsFsw.Applications.IqAnalyzer.Trace.Iq.State.set. If averaging is on, the maximum amount of I/Q data that can be recorded is 512kS (524288 samples) .

return

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

set(state: bool) None[source]
# SCPI: TRACe:IQ:AVERage[:STATe]
driver.applications.iqAnalyzer.trace.iq.average.state.set(state = False)

This command turns averaging of the I/Q data on and off. Before you can use the command you have to turn the I/Q data acquisition on with method RsFsw.Applications.IqAnalyzer.Trace.Iq.State.set. If averaging is on, the maximum amount of I/Q data that can be recorded is 512kS (524288 samples) .

param state

ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on