State
SCPI Command :
TRACe:IQ:AVERage[:STATe]
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() bool[source]
# 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) .- Returns:
state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on
- set(state: bool) None[source]
# 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) .- Parameters:
state – ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on