Mode

SCPI Command :

[SENSe]:IQ:BWIDth:MODE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() IqBandwidthMode[source]
# [SENSe]:IQ:BWIDth:MODE
value: enums.IqBandwidthMode = driver.sense.iq.bandwidth.mode.get()

Defines how the resolution bandwidth is determined.

Returns:

mode: AUTO | MANual | FFT AUTO (Default) The RBW is determined automatically depending on the sample rate and record length. MANual The user-defined RBW is used and the (FFT) window length (and possibly the sample rate) are adapted accordingly. The RBW is defined using the method RsFsw.sense.iq.bandwidth.resolution.set() command. FFT The RBW is determined by the FFT parameters.

set(mode: IqBandwidthMode) None[source]
# [SENSe]:IQ:BWIDth:MODE
driver.sense.iq.bandwidth.mode.set(mode = enums.IqBandwidthMode.AUTO)

Defines how the resolution bandwidth is determined.

Parameters:

mode – AUTO | MANual | FFT AUTO (Default) The RBW is determined automatically depending on the sample rate and record length. MANual The user-defined RBW is used and the (FFT) window length (and possibly the sample rate) are adapted accordingly. The RBW is defined using the method RsFsw.sense.iq.bandwidth.resolution.set() command. FFT The RBW is determined by the FFT parameters.