Fft

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:SPAN
CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:LENGth
CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:WINDow
class FftCls[source]

Fft commands group definition. 5 total commands, 1 Subgroups, 3 group commands

get_length() FftLength[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:LENGth
value: enums.FftLength = driver.configure.afRf.measurement.multiEval.fft.get_length()

No command help available

return:

length: No help available

get_span() FftSpan[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:SPAN
value: enums.FftSpan = driver.configure.afRf.measurement.multiEval.fft.get_span()

No command help available

return:

span: No help available

get_window() FftWindowType[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:WINDow
value: enums.FftWindowType = driver.configure.afRf.measurement.multiEval.fft.get_window()

Selects the window function to be applied before the fast Fourier transformation.

return:

type_py: RECTangle | HAMMing | HANN | BLHA | FLTP RECTangle, HAMMing, HANN Rectangular / Hamming / Hann window BLHA Blackman-Harris window FLTP Flat-Top window

set_length(length: FftLength) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:LENGth
driver.configure.afRf.measurement.multiEval.fft.set_length(length = enums.FftLength.F16K)

No command help available

param length:

No help available

set_span(span: FftSpan) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:SPAN
driver.configure.afRf.measurement.multiEval.fft.set_span(span = enums.FftSpan.SP1)

No command help available

param span:

No help available

set_window(type_py: FftWindowType) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:FFT:WINDow
driver.configure.afRf.measurement.multiEval.fft.set_window(type_py = enums.FftWindowType.BLHA)

Selects the window function to be applied before the fast Fourier transformation.

param type_py:

RECTangle | HAMMing | HANN | BLHA | FLTP RECTangle, HAMMing, HANN Rectangular / Hamming / Hann window BLHA Blackman-Harris window FLTP Flat-Top window

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.afRf.measurement.multiEval.fft.clone()

Subgroups