Mode

SCPI Command :

[SENSe]:IQ:BWIDth:MODE
class ModeCls[source]

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

get() RsFsw.enums.IqBandwidthMode[source]
# SCPI: [SENSe]:IQ:BWIDth:MODE
value: enums.IqBandwidthMode = driver.sense.iq.bandwidth.mode.get()

Defines how the resolution bandwidth is determined.

return

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 [SENSe:]IQ:BWIDth:RESolution command. FFT The RBW is determined by the FFT parameters.

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

Defines how the resolution bandwidth is determined.

param 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 [SENSe:]IQ:BWIDth:RESolution command. FFT The RBW is determined by the FFT parameters.