Fft

SCPI Command :

[SENSe]:BWIDth[:RESolution]:FFT
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() FftFilterMode[source]
# [SENSe]:BWIDth[:RESolution]:FFT
value: enums.FftFilterMode = driver.sense.bandwidth.resolution.fft.get()

Defines the filter mode to be used for FFT filters by defining the subspan size. The subspan is the span which is covered by one FFT analysis. Is only available when using the sweep type ‘FFT’. Note: this command is maintained for compatibility reasons only. For new remote control programs, use the method RsFsw.sense.sweep.optimize.set() command.

Returns:

filter_mode: WIDE | AUTO | NARRow AUTO Automatically applies the sweep optimization mode that is best for the current measurement. NARRow Optimizes the sweep mode for a large dynamic range. WIDE Optimizes the sweep mode for high performance.

set(filter_mode: FftFilterMode) None[source]
# [SENSe]:BWIDth[:RESolution]:FFT
driver.sense.bandwidth.resolution.fft.set(filter_mode = enums.FftFilterMode.AUTO)

Defines the filter mode to be used for FFT filters by defining the subspan size. The subspan is the span which is covered by one FFT analysis. Is only available when using the sweep type ‘FFT’. Note: this command is maintained for compatibility reasons only. For new remote control programs, use the method RsFsw.sense.sweep.optimize.set() command.

Parameters:

filter_mode – WIDE | AUTO | NARRow AUTO Automatically applies the sweep optimization mode that is best for the current measurement. NARRow Optimizes the sweep mode for a large dynamic range. WIDE Optimizes the sweep mode for high performance.